bitmark-grammar
Version:
117 lines (116 loc) • 4.23 kB
JavaScript
;
/*!
* Copyright 2016 The ANTLR Project. All rights reserved.
* Licensed under the BSD-3-Clause license. See LICENSE file in the project root for license information.
*/
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __param = (this && this.__param) || function (paramIndex, decorator) {
return function (target, key) { decorator(target, key, paramIndex); }
};
exports.__esModule = true;
exports.LexerPushModeAction = void 0;
var MurmurHash_1 = require("../misc/MurmurHash");
var Decorators_1 = require("../Decorators");
/**
* Implements the `pushMode` lexer action by calling
* {@link Lexer#pushMode} with the assigned mode.
*
* @author Sam Harwell
* @since 4.2
*/
var LexerPushModeAction = /** @class */ (function () {
/**
* Constructs a new `pushMode` action with the specified mode value.
* @param mode The mode value to pass to {@link Lexer#pushMode}.
*/
function LexerPushModeAction(mode) {
this._mode = mode;
}
Object.defineProperty(LexerPushModeAction.prototype, "mode", {
/**
* Get the lexer mode this action should transition the lexer to.
*
* @returns The lexer mode for this `pushMode` command.
*/
get: function () {
return this._mode;
},
enumerable: false,
configurable: true
});
Object.defineProperty(LexerPushModeAction.prototype, "actionType", {
/**
* {@inheritDoc}
* @returns This method returns {@link LexerActionType#PUSH_MODE}.
*/
get: function () {
return 5 /* LexerActionType.PUSH_MODE */;
},
enumerable: false,
configurable: true
});
Object.defineProperty(LexerPushModeAction.prototype, "isPositionDependent", {
/**
* {@inheritDoc}
* @returns This method returns `false`.
*/
get: function () {
return false;
},
enumerable: false,
configurable: true
});
/**
* {@inheritDoc}
*
* This action is implemented by calling {@link Lexer#pushMode} with the
* value provided by {@link #getMode}.
*/
LexerPushModeAction.prototype.execute = function (lexer) {
lexer.pushMode(this._mode);
};
LexerPushModeAction.prototype.hashCode = function () {
var hash = MurmurHash_1.MurmurHash.initialize();
hash = MurmurHash_1.MurmurHash.update(hash, this.actionType);
hash = MurmurHash_1.MurmurHash.update(hash, this._mode);
return MurmurHash_1.MurmurHash.finish(hash, 2);
};
LexerPushModeAction.prototype.equals = function (obj) {
if (obj === this) {
return true;
}
else if (!(obj instanceof LexerPushModeAction)) {
return false;
}
return this._mode === obj._mode;
};
LexerPushModeAction.prototype.toString = function () {
return "pushMode(".concat(this._mode, ")");
};
__decorate([
Decorators_1.Override
], LexerPushModeAction.prototype, "actionType");
__decorate([
Decorators_1.Override
], LexerPushModeAction.prototype, "isPositionDependent");
__decorate([
Decorators_1.Override,
__param(0, Decorators_1.NotNull)
], LexerPushModeAction.prototype, "execute");
__decorate([
Decorators_1.Override
], LexerPushModeAction.prototype, "hashCode");
__decorate([
Decorators_1.Override
], LexerPushModeAction.prototype, "equals");
__decorate([
Decorators_1.Override
], LexerPushModeAction.prototype, "toString");
return LexerPushModeAction;
}());
exports.LexerPushModeAction = LexerPushModeAction;