You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
337 B
JavaScript

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