Lines Matching refs:use

6 // without limitation the rights to use, copy, modify, merge, publish,
22 'use strict';
244 send: '(function() { "use strict"; return 0755; })()',
253 send: '(function(a, a, b) { "use strict"; return a + b + c; })()',
262 send: '(function() { "use strict"; with (this) {} })()',
271 send: '(function() { "use strict"; var x; delete x; })()',
280 send: '(function() { "use strict"; eval = 17; })()',
289 send: '(function() { "use strict"; if (true) function f() { } })()',
405 // This makes sure that we don't crash when we use an inherited property as
820 'SyntaxError: Cannot use import statement inside the Node.js REPL, \
821 alternatively use dynamic import: const { default: comeOn } = await import("fhqwhgads");',
831 'SyntaxError: Cannot use import statement inside the Node.js REPL, \
832 alternatively use dynamic import: const { export1, export2 } = await import("module-name");',
842 'SyntaxError: Cannot use import statement inside the Node.js REPL, \
843 alternatively use dynamic import: const name = await import("module-name");',
853 'SyntaxError: Cannot use import statement inside the Node.js REPL, \
854 alternatively use dynamic import: await import("module-name");',
864 'SyntaxError: Cannot use import statement inside the Node.js REPL, \
865 alternatively use dynamic import: const { export1: localName1, export2 } = await import("bar");',
875 'SyntaxError: Cannot use import statement inside the Node.js REPL, \
876 alternatively use dynamic import: const { default: alias } = await import("bar");',
886 'SyntaxError: Cannot use import statement inside the Node.js REPL, \
887 alternatively use dynamic import: const { default: alias, namedExport } = await import("bar");',