Certain ECMAScript environments permit switiching into a special mode by means of a Directive Prologue. ECMAScript 5 has "use strict" and others such as asm have their own like "use asm".
The docs on Directive Prologues are written in a language that's a little to obtuse for my comprehension level. What is the correct way to construct a Directive Prologue with multiple Directives? My hunch is its:
function(){
"use foo";
"use bar";
}
But I'm not sure.
"use strict"
are actually recognised by anyone, at least not in the browser environment. – Swamp"use asm";
– Omora