This is a proposal for the inclusion of an additional primordial variable to all ECMAScript contexts.
- There MUST be a primordial function
Module(text, fileName, lineNo)textMUST be parsed the body of a strict-mode FunctionModuleMAY throw aSyntaxErrorfileNameis an optional name for the text, for debuggerslineNodefaults to 1, is coerced toNumberinternally, and represents the line number corresponding to the beginning of the text within the file indicated byfileNameModuleMAY be called as a constructor or as a function. Its behavior must be identical in either case.Modulereturns aFunction(for illustration:module(scope))scopeis internally coerced to anObject- when module is called
- the function described in
textis run in a lexical scope that contains- the primordials (Non normatively, these include
ArrayandObjectbut not legacy, embedding-specific values likewindow; a citation to a comprehensive list in the specification is needed here) - preceding the primordials, a variable corresponding to each owned property of
scope - such that any free variable in
textthat is neither mentioned in thescopeobject or is a primordial throws aReferenceErrorat the point it is used.
- the primordials (Non normatively, these include
- the module returns the value returned by the function
- the function described in
- the
Moduleinstance MUST own arequirementspropertyrequirementsare anArrayrequirementsmust contain the string corresponding to each occurrence of the free variablerequirethat exists intextin whichrequireis called as a function with theStringas its argument
- the
Moduleinstance MUST own thefileNameproperty corresponding to thefileNamegiven to theModuleconstructor. - the
Moduleinstance MUST own thelineNoproperty corresponding to thelineNogiven to theModuleconstructor.
I'm not sure how to express a requirement that would achieve "containment". Does "strict-mode" not sweep the global object off the scope chain, guaranteeing that the only free variables outside the module scope are owned properties of the global object? Will it; is this an orthogonal concern that this specification can ride on? What verbiage would narrow it enough: "when a module function is called, an exception must be thrown if the text contains free variables that are not matched by owned properties of the global record or module scope record? Would that place too high a burden on implementations, requiring free variables to be tracked in the parse tree? Would it not be better to have these remain Reference errors and just tighten the lexical lookup code so it doesn't traverse the prototype of the scope and global objects? That would just leave the issue of freezing primordial object tree, which I think is a separable act.