13 lines
372 B
JavaScript
13 lines
372 B
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
|
|
exports.default = function (ast, strictCode, env, realm) {
|
|
// 1. Return ? ResolveBinding(StringValue of Identifier).
|
|
return _singletons.Environment.ResolveBinding(realm, ast.name, strictCode, env);
|
|
};
|
|
|
|
var _singletons = require("../singletons.js");
|
|
//# sourceMappingURL=Identifier.js.map
|