comment tweaks

This commit is contained in:
David Glasser
2015-06-15 17:12:19 -07:00
parent 7c729b90a4
commit c7f7dcb4fb
3 changed files with 1 additions and 24 deletions

View File

@@ -6,9 +6,6 @@ Package.describe({
});
// XXX BBP remove from core?
// XXX BBP update docs, examples
// XXX BBP needs dependency on batch-plugins magic package
Package.registerBuildPlugin({
name: "compileLessBatch",

View File

@@ -581,26 +581,6 @@ var SOURCE_MAP_INSTRUCTIONS_COMMENT = banner([
"and Firefox, and by Internet Explorer 11."
]);
// Finish the linking.
//
// options include:
//
// imports: symbols to import. map from symbol name (something like
// 'Foo', "Foo.bar", etc) to the module from which it should be
// imported (which must load before us at runtime)
//
// packageVariables: package-scope variables, some of which may be exports.
// a list of {name, export} objects; any non-falsy value for "export" means
// to export it.
//
// useGlobalNamespace: must be the same value that was passed to link()
//
// prelinkFiles: the 'files' output from prelink()
//
// Output is an array of final output files in the same format as the
// 'inputFiles' argument to prelink().
// XXX BBP delete comment
var getHeader = function (options) {
var chunks = [];
chunks.push("(function () {\n\n" );

View File

@@ -186,5 +186,5 @@ selftest.define("compiler plugin caching - local plugin", function () {
run.stop();
// XXX BBP test that cache gets reused but deleted at the right time
// XXX BBP test that on-disk cache gets reused but deleted at the right time
});