import { Newline } from "../../peg-newline" import { CommaDelimitedInteger as GroupedInteger } from "../../peg-grouped-number" { const syncpipe = require("syncpipe"); const {B} = require("../../unit-bytes-iec"); } RestOfLine = content:$[^\n]+ Newline { return content; } BytesValue = value:GroupedInteger { return B(value); } IdentifierValue = value:$[a-zA-Z_-]+ { return value; }