This commit is contained in:
kobalicek
2014-06-07 21:57:07 +02:00
parent 0dbd42f350
commit a66efd5460

View File

@@ -11,8 +11,8 @@ var fs = require("fs");
// [Configuration] // [Configuration]
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
var injectStartMarker = "// ${kInstData:Begin}\n" var injectStartMarker = "// ${kInstData:Begin}\n";
var injectEndMarker = "// ${kInstData:End}\n" var injectEndMarker = "// ${kInstData:End}\n";
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// [Utilities] // [Utilities]
@@ -41,10 +41,7 @@ var inject = function(s, start, end, code) {
// [Database] // [Database]
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// FullIndex - Index of the name of the instruction in one big string (no // FullIndex - Index of the name of the instruction in one big string.
// prefix/suffix concept).
// PrefixIndex - Index to a prefix string.
// SuffixIndex - Index to a suffix string.
var Database = (function() { var Database = (function() {
var IndexedString = function() { var IndexedString = function() {
@@ -97,7 +94,6 @@ var Database = (function() {
this.map[name] = { this.map[name] = {
id: id, id: id,
fullIndex: 0, fullIndex: 0,
prefixIndex: 0,
hasV: 0 hasV: 0
}; };
}; };