solidity-antlr4
Version:
Solidity Lang Lexer and Parser by official ANTLR4 grammar
12 lines (11 loc) • 306 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.Assignment = void 0;
var _binaryOperation = require("./binary-operation.cjs");
class Assignment extends _binaryOperation.BinaryOperation {
// @ts-expect-error
type = "Assignment";
}
exports.Assignment = Assignment;