|
|
|
"use strict";
|
|
|
|
|
|
|
|
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
|
|
|
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
|
|
value: true
|
|
|
|
});
|
|
|
|
|
|
|
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
|
|
|
|
|
|
/*
|
|
|
|
Copyright (C) 2015 Yusuke Suzuki <utatane.tea@gmail.com>
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in the
|
|
|
|
documentation and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
|
|
|
|
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
|
|
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
var READ = 0x1;
|
|
|
|
var WRITE = 0x2;
|
|
|
|
var RW = READ | WRITE;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A Reference represents a single occurrence of an identifier in code.
|
|
|
|
* @class Reference
|
|
|
|
*/
|
|
|
|
|
|
|
|
var Reference = function () {
|
|
|
|
function Reference(ident, scope, flag, writeExpr, maybeImplicitGlobal, partial, init) {
|
|
|
|
_classCallCheck(this, Reference);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Identifier syntax node.
|
|
|
|
* @member {esprima#Identifier} Reference#identifier
|
|
|
|
*/
|
|
|
|
this.identifier = ident;
|
|
|
|
/**
|
|
|
|
* Reference to the enclosing Scope.
|
|
|
|
* @member {Scope} Reference#from
|
|
|
|
*/
|
|
|
|
this.from = scope;
|
|
|
|
/**
|
|
|
|
* Whether the reference comes from a dynamic scope (such as 'eval',
|
|
|
|
* 'with', etc.), and may be trapped by dynamic scopes.
|
|
|
|
* @member {boolean} Reference#tainted
|
|
|
|
*/
|
|
|
|
this.tainted = false;
|
|
|
|
/**
|
|
|
|
* The variable this reference is resolved with.
|
|
|
|
* @member {Variable} Reference#resolved
|
|
|
|
*/
|
|
|
|
this.resolved = null;
|
|
|
|
/**
|
|
|
|
* The read-write mode of the reference. (Value is one of {@link
|
|
|
|
* Reference.READ}, {@link Reference.RW}, {@link Reference.WRITE}).
|
|
|
|
* @member {number} Reference#flag
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this.flag = flag;
|
|
|
|
if (this.isWrite()) {
|
|
|
|
/**
|
|
|
|
* If reference is writeable, this is the tree being written to it.
|
|
|
|
* @member {esprima#Node} Reference#writeExpr
|
|
|
|
*/
|
|
|
|
this.writeExpr = writeExpr;
|
|
|
|
/**
|
|
|
|
* Whether the Reference might refer to a partial value of writeExpr.
|
|
|
|
* @member {boolean} Reference#partial
|
|
|
|
*/
|
|
|
|
this.partial = partial;
|
|
|
|
/**
|
|
|
|
* Whether the Reference is to write of initialization.
|
|
|
|
* @member {boolean} Reference#init
|
|
|
|
*/
|
|
|
|
this.init = init;
|
|
|
|
}
|
|
|
|
this.__maybeImplicitGlobal = maybeImplicitGlobal;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether the reference is static.
|
|
|
|
* @method Reference#isStatic
|
|
|
|
* @return {boolean}
|
|
|
|
*/
|
|
|
|
|
|
|
|
_createClass(Reference, [{
|
|
|
|
key: "isStatic",
|
|
|
|
value: function isStatic() {
|
|
|
|
return !this.tainted && this.resolved && this.resolved.scope.isStatic();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether the reference is writeable.
|
|
|
|
* @method Reference#isWrite
|
|
|
|
* @return {boolean}
|
|
|
|
*/
|
|
|
|
|
|
|
|
}, {
|
|
|
|
key: "isWrite",
|
|
|
|
value: function isWrite() {
|
|
|
|
return !!(this.flag & Reference.WRITE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether the reference is readable.
|
|
|
|
* @method Reference#isRead
|
|
|
|
* @return {boolean}
|
|
|
|
*/
|
|
|
|
|
|
|
|
}, {
|
|
|
|
key: "isRead",
|
|
|
|
value: function isRead() {
|
|
|
|
return !!(this.flag & Reference.READ);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether the reference is read-only.
|
|
|
|
* @method Reference#isReadOnly
|
|
|
|
* @return {boolean}
|
|
|
|
*/
|
|
|
|
|
|
|
|
}, {
|
|
|
|
key: "isReadOnly",
|
|
|
|
value: function isReadOnly() {
|
|
|
|
return this.flag === Reference.READ;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether the reference is write-only.
|
|
|
|
* @method Reference#isWriteOnly
|
|
|
|
* @return {boolean}
|
|
|
|
*/
|
|
|
|
|
|
|
|
}, {
|
|
|
|
key: "isWriteOnly",
|
|
|
|
value: function isWriteOnly() {
|
|
|
|
return this.flag === Reference.WRITE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether the reference is read-write.
|
|
|
|
* @method Reference#isReadWrite
|
|
|
|
* @return {boolean}
|
|
|
|
*/
|
|
|
|
|
|
|
|
}, {
|
|
|
|
key: "isReadWrite",
|
|
|
|
value: function isReadWrite() {
|
|
|
|
return this.flag === Reference.RW;
|
|
|
|
}
|
|
|
|
}]);
|
|
|
|
|
|
|
|
return Reference;
|
|
|
|
}();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @constant Reference.READ
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
|
|
|
|
exports.default = Reference;
|
|
|
|
Reference.READ = READ;
|
|
|
|
/**
|
|
|
|
* @constant Reference.WRITE
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
Reference.WRITE = WRITE;
|
|
|
|
/**
|
|
|
|
* @constant Reference.RW
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
Reference.RW = RW;
|
|
|
|
|
|
|
|
/* vim: set sw=4 ts=4 et tw=80 : */
|
|
|
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInJlZmVyZW5jZS5qcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBd0JBLElBQU0sT0FBTyxHQUFQO0FBQ04sSUFBTSxRQUFRLEdBQVI7QUFDTixJQUFNLEtBQUssT0FBTyxLQUFQOzs7Ozs7O0lBTVU7QUFDakIsV0FEaUIsU0FDakIsQ0FBWSxLQUFaLEVBQW1CLEtBQW5CLEVBQTBCLElBQTFCLEVBQWlDLFNBQWpDLEVBQTRDLG1CQUE1QyxFQUFpRSxPQUFqRSxFQUEwRSxJQUExRSxFQUFnRjswQkFEL0QsV0FDK0Q7Ozs7OztBQUs1RSxTQUFLLFVBQUwsR0FBa0IsS0FBbEI7Ozs7O0FBTDRFLFFBVTVFLENBQUssSUFBTCxHQUFZLEtBQVo7Ozs7OztBQVY0RSxRQWdCNUUsQ0FBSyxPQUFMLEdBQWUsS0FBZjs7Ozs7QUFoQjRFLFFBcUI1RSxDQUFLLFFBQUwsR0FBZ0IsSUFBaEI7Ozs7Ozs7QUFyQjRFLFFBNEI1RSxDQUFLLElBQUwsR0FBWSxJQUFaLENBNUI0RTtBQTZCNUUsUUFBSSxLQUFLLE9BQUwsRUFBSixFQUFvQjs7Ozs7QUFLaEIsV0FBSyxTQUFMLEdBQWlCLFNBQWpCOzs7OztBQUxnQixVQVVoQixDQUFLLE9BQUwsR0FBZSxPQUFmOzs7OztBQVZnQixVQWVoQixDQUFLLElBQUwsR0FBWSxJQUFaLENBZmdCO0tBQXBCO0FBaUJBLFNBQUsscUJBQUwsR0FBNkIsbUJBQTdCLENBOUM0RTtHQUFoRjs7Ozs7Ozs7ZUFEaUI7OytCQXVETjtBQUNQLGFBQU8sQ0FBQyxLQUFLLE9BQUwsSUFBZ0IsS0FBSyxRQUFMLElBQWlCLEtBQUssUUFBTCxDQUFjLEtBQWQsQ0FBb0IsUUFBcEIsRUFBbEMsQ0FEQTs7Ozs7Ozs7Ozs7OEJBU0Q7QUFDTixhQUFPLENBQUMsRUFBRSxLQUFLLElBQUwsR0FBWSxVQUFVLEtBQVYsQ0FBZCxDQURGOzs7Ozs7Ozs7Ozs2QkFTRDtBQUNMLGFBQU8sQ0FBQyxFQUFFLEtBQUssSUFBTCxHQUFZLFVBQVUsSUFBVixDQUFkLENBREg7Ozs7Ozs7Ozs7O2lDQVNJO0FBQ1QsYUFBTyxLQUFLLElBQUwsS0FBYyxVQUFVLElBQVYsQ0FEWjs7Ozs7Ozs7Ozs7a0NBU0M7QUFDVixhQUFPLEtBQUssSUFBTCxLQUFjLFVBQVUsS0FBVixDQURYOzs7Ozs7Ozs7OztrQ0FTQTtBQUNWLGFBQU8sS0FBSyxJQUFMLEtBQWMsVUFBVSxFQUFWLENBRFg7Ozs7U0FwR0c7Ozs7Ozs7OztBQTZHckIsVUFBVSxJQUFWLEdBQWlCLElBQWpCOzs7OztBQUtBLFVBQVUsS0FBVixHQUFrQixLQUFsQjs7Ozs7QUFLQSxVQUFVLEVBQVYsR0FBZSxFQUFmIiwiZmlsZSI6InJlZmVyZW5jZS5qcyIsInNvdXJjZXNDb250ZW50IjpbIi8qXG4gIENvcHlyaWdodCAoQykgMjAxNSBZdXN1a2UgU3V6dWtpIDx1dGF0YW5lLnRlYUBnbWFpbC5jb20+XG5cbiAgUmVkaXN0cmlidXRpb24gYW5kIHVzZSBpbiBzb3VyY2UgYW5kIGJpbmFyeSBmb3Jtcywgd2l0aCBvciB3aXRob3V0XG4gIG1vZGlmaWNhdGlvbiwgYXJlIHBlcm1pdHRlZCBwcm92aWRlZCB0aGF0IHRoZSBmb2xsb3dpbmcgY29uZGl0aW9ucyBhcmUgbWV0OlxuXG4gICAgKiBSZWRpc3RyaWJ1dGlvbnMgb2Ygc291cmNlIGNvZGUgbXVzdCByZXRhaW4gdGhlIGFib3ZlIGNvcHlyaWdodFxuICAgICAgbm90aWNlLCB0aGlzIGxpc3Qgb2YgY29uZGl0aW9ucyBhbmQgdGhlIGZvbGxvd2luZyBkaXNjbGFpbWVyLlxuICAgICogUmVkaXN0cmlidXRpb25zIGluIGJpbmFyeSBmb3JtIG11c3QgcmVwcm9kdWNlIHRoZSBhYm92ZSBjb3B5cmlnaHRcbiAgICAgIG5vdGljZSwgdGhpcyBsaXN0IG9mIGNvbmRpdGlvbnMgYW5kIHRoZSBmb2xsb3dpbmcgZGlzY2xhaW1lciBpbiB0aGVcbiAgICAgIGRvY3VtZW50YXRpb24gYW5kL29yIG90aGVyIG1hdGVyaWFscyBwcm92aWRlZCB3aXRoIHRoZSBkaXN0cmlidXRpb24uXG5cbiAgVEhJUyBTT0ZUV0FSRSBJUyBQUk9WSURFRCBCWSBUSEUgQ09QWVJJR0hUIEhPTERFUlMgQU5EIENPTlRSSUJVVE9SUyBcIkFTIElTXCJcbiAgQU5EIEFOWSBFWFBSRVNTIE9SIElNUExJRUQgV0FSUkFOVElFUywgSU5DTFVESU5HLCBCVVQgTk9UIExJTUlURUQgVE8sIFRIRVxuICBJTVBMSUVEIFdBUlJBTlRJRVMgT0YgTUVSQ0hBTlRBQklMSVRZIEFORCBGSVRORVNTIEZPUiBBIFBBUlRJQ1VMQVIgUFVSUE9TRVxuICBBUkUgRElTQ0xBSU1FRC4gSU4gTk8gRVZFTlQgU0hBTEwgPENPUFlSSUdIVCBIT0xERVI+IEJFIExJQUJMRSBGT1IgQU5ZXG4gIERJUkVDVCwgSU5ESVJFQ1QsIElOQ0lERU5UQUwsIFNQRUNJQUwsIEVYRU1QTEFSWSwgT1IgQ09OU0VRVUVOVElBTCBEQU1BR0VTXG4gIChJTkNMVURJTkcsIEJVVCBOT1QgTElNSVRFRCBUTywgUFJPQ1VSRU1FTlQgT0YgU1VCU1RJVFVURSBHT09EUyBPUiBTRVJWSUNFUztcbiAgTE9TUyBPRiBVU0UsIERBVEEsIE9SIFBST0ZJVFM7IE9SIEJVU0lORVNTIElOVEVSUlVQVElPTikgSE9XRVZFUiBDQVVTRUQgQU5EXG4gIE9OIEFOWSBUSEVPUlkgT0YgTElBQklMSVRZLCBXSEVUSEVSIElOIENPTlRSQUNULCBTVFJJQ1QgTElBQklMSVRZLCBPUiBUT1JUXG4gIChJTkNMVURJTkcgTkVHTElHRU5DRSBPUiBPVEhFUldJU0UpIEFSSVNJTkcgSU4gQU5ZIFdBWSBPVVQgT0YgVEhFIFVTRSBPRlxuICBUSElTIFNPRlRXQVJFLCBFVkVOIElGIEFEVklTRUQgT0YgVEhFIFBPU1NJQklMSVRZIE9GIFNVQ0ggREFNQUdFLlxuKi9cblxuY29uc3QgUkVBRCA9IDB4MTtcbmNvbnN0IFdSSVRFID0gMHgyO1xuY29uc3QgUlcgPSBSRUFEIHwgV1JJVEU7XG5cbi8qKlxuICogQSBSZWZlcmVuY2UgcmVwcmVzZW50cyBhIHNpbmdsZSBvY2N1cnJlbmNlIG9mIGFuIGlkZW50aWZpZXIgaW4gY29kZS5cbiAqIEBjbGFzcyBSZWZlcmVuY2VcbiAqL1xuZXhwb3J0IGRlZmF1bHQgY2xhc3MgUmVmZXJlbmNlIHtcbiAgICBjb25zdHJ1Y3RvcihpZGVudCwgc2NvcGUsIGZsYWcsICB3cml0ZUV4cHIsIG1heWJlSW1wbGljaXRHbG9iYWwsIHBhcnRpYWwsIGluaXQpIHtcbiAgICAgICAgLyoqXG4gICAgICAgICAqIElkZW50aWZpZXIgc3ludGF4IG5vZGUuXG4gICAgICAgICAqIEBtZW1iZXIge2VzcHJpbWEjSWRlbnRpZmllcn0gUmVmZXJlbmNlI2lkZW50aWZpZXJcbiAgICAgICAgICovXG4gICAgICAgIHRoa
|