mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 04:57:03 +00:00
Removed unused 6th parameter
This commit is contained in:
@@ -94,7 +94,7 @@ exports.run = function(args)
|
||||
var arg0 = argv.shift();
|
||||
var mainFilePath = FILE.canonical(arg0);
|
||||
|
||||
exports.make_narwhal_factory(mainFilePath)(require, { }, module, system, print, window);
|
||||
exports.make_narwhal_factory(mainFilePath)(require, { }, module, system, print);
|
||||
|
||||
if (typeof main === "function")
|
||||
main([arg0].concat(argv));
|
||||
|
||||
@@ -880,7 +880,7 @@ BundleTask.prototype.defineSourceTasks = function()
|
||||
basePath = absolutePath.substring(0, absolutePath.length - theTranslatedFilename.length);
|
||||
|
||||
require("objective-j").setCurrentCompilerFlags(environmentCompilerFlags);
|
||||
require("objective-j").make_narwhal_factory(absolutePath, basePath, translateFilenameToPath)(require, e, module, system, print, window);
|
||||
require("objective-j").make_narwhal_factory(absolutePath, basePath, translateFilenameToPath)(require, e, module, system, print);
|
||||
TERM.stream.write("Compiling [\0blue(" + anEnvironment + "\0)] \0purple(" + aFilename + "\0)").flush();
|
||||
|
||||
var otherwayTranslatedFilename = otherwayTranslateFilenameToPath[aFilename] ? otherwayTranslateFilenameToPath[aFilename] : aFilename,
|
||||
|
||||
Reference in New Issue
Block a user