first
This commit is contained in:
22
node_modules/@babel/parser/lib/parse-error/strict-mode-errors.js
generated
vendored
Normal file
22
node_modules/@babel/parser/lib/parse-error/strict-mode-errors.js
generated
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
var _default = {
|
||||
StrictDelete: "Deleting local variable in strict mode.",
|
||||
StrictEvalArguments: ({
|
||||
referenceName
|
||||
}) => `Assigning to '${referenceName}' in strict mode.`,
|
||||
StrictEvalArgumentsBinding: ({
|
||||
bindingName
|
||||
}) => `Binding '${bindingName}' in strict mode.`,
|
||||
StrictFunction: "In strict mode code, functions can only be declared at top level or inside a block.",
|
||||
StrictNumericEscape: "The only valid numeric escape in strict mode is '\\0'.",
|
||||
StrictOctalLiteral: "Legacy octal literals are not allowed in strict mode.",
|
||||
StrictWith: "'with' in strict mode."
|
||||
};
|
||||
exports.default = _default;
|
||||
|
||||
//# sourceMappingURL=strict-mode-errors.js.map
|
Reference in New Issue
Block a user