/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/. */
for (var name in gcFunctions) { for (let readable of (functions.readableName[name] || [name])) {
print(""); const fullname = (name == readable) ? name : name + "$" + readable;
print("GC Function: " + fullname);
let current = name; do {
current = gcFunctions[current]; if (current === 'internal')
; // Hit the end elseif (current in functions.readableName)
print(" " + functions.readableName[current][0]); else
print(" " + current);
} while (current in gcFunctions);
}
}
info("Writing " + options.gcFunctionsList);
redirect(options.gcFunctionsList); for (var name in gcFunctions) { if (name in functions.readableName) { for (var readable of functions.readableName[name])
print(name + "$" + readable);
} else {
print(name);
}
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.