11 lines
302 B
JavaScript
11 lines
302 B
JavaScript
import { GbnfTerminal } from "../GbnfTerminal.js";
|
|
import { reservedRuleNames } from "./gbnfConsts.js";
|
|
export class GbnfNull extends GbnfTerminal {
|
|
getGrammar() {
|
|
return '"null"';
|
|
}
|
|
getRuleName() {
|
|
return reservedRuleNames.null;
|
|
}
|
|
}
|
|
//# sourceMappingURL=GbnfNull.js.map
|