mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-14 00:54:48 +08:00
11 lines
296 B
JavaScript
Executable File
11 lines
296 B
JavaScript
Executable File
import P from "parsernostrum"
|
|
import Grammar from "../serialization/Grammar.js"
|
|
import SymbolEntity from "./SymbolEntity.js"
|
|
|
|
export default class EnumEntity extends SymbolEntity {
|
|
|
|
static grammar = /** @type {P<EnumEntity>} */(
|
|
Grammar.symbol.map(v => new this(v))
|
|
)
|
|
}
|