solidity-antlr4
Version:
Solidity Lang Lexer and Parser by official ANTLR4 grammar
22 lines (21 loc) • 652 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.PrettierPrinter = void 0;
var _printers = require("./printers/index.cjs");
class PrettierPrinter {
static name = "solidity-antlr4-ast";
print = _printers.print;
printComment = _printers.printComment;
isBlockComment = _printers.isBlockComment;
canAttachComment = _printers.canAttachComment;
massageAstNode = _printers.massageAstNode;
handleComments = _printers.handleComments;
// handleComments = {
// ownLine: this.ownLine,
// endOfLine: this.endOfLine,
// remaining: this.remaining,
// };
}
exports.PrettierPrinter = PrettierPrinter;