@flowscripter/mpeg-sdl-parser
Version:
ISO/IEC 14496-34 Syntactic Description Language (MPEG SDL) parser implemented in TypeScript
39 lines (31 loc) • 428 B
Plain Text
# Simple
class A {}
==>
Specification(
ClassDeclaration(
class
Whitespace
Identifier
Whitespace
OpenBrace
CloseBrace
)
)
# Line breaks
// hello world
class A {
}
==>
Specification(
Comment
Whitespace
ClassDeclaration(
class
Whitespace
Identifier
Whitespace
OpenBrace
Whitespace
CloseBrace
)
)