UNPKG

@flowscripter/mpeg-sdl-parser

Version:

ISO/IEC 14496-34 Syntactic Description Language (MPEG SDL) parser implemented in TypeScript

12 lines (11 loc) 205 B
/** * Enum representing different kinds of expressions. */ export enum ExpressionKind { /** Binary expression */ BINARY, /** Lengthof expression */ LENGTHOF, /** Unary expression */ UNARY, }