From c7f7dcb4fbb7a185e49edf2fb0010cca6b24655d Mon Sep 17 00:00:00 2001 From: David Glasser Date: Mon, 15 Jun 2015 17:12:19 -0700 Subject: [PATCH] comment tweaks --- packages/less/package.js | 3 --- tools/linker.js | 20 -------------------- tools/tests/batch-plugins.js | 2 +- 3 files changed, 1 insertion(+), 24 deletions(-) diff --git a/packages/less/package.js b/packages/less/package.js index b71995a391..cb0c6ae716 100644 --- a/packages/less/package.js +++ b/packages/less/package.js @@ -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", diff --git a/tools/linker.js b/tools/linker.js index 76468f564e..6f993f66bf 100644 --- a/tools/linker.js +++ b/tools/linker.js @@ -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" ); diff --git a/tools/tests/batch-plugins.js b/tools/tests/batch-plugins.js index b5b0aefff0..7ec0b2884e 100644 --- a/tools/tests/batch-plugins.js +++ b/tools/tests/batch-plugins.js @@ -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 });