Grammar refactoring WIP

This commit is contained in:
barsdeveloper
2021-10-22 00:01:24 +02:00
parent 9caea42101
commit 051eed061d
21 changed files with 968 additions and 354 deletions

View File

@@ -0,0 +1,17 @@
import Entity from "./Entity"
export default class ObjectReferenceEntity extends Entity {
static attributes = {
type: "None",
path: ""
}
getAttributes() {
return ObjectReferenceEntity.attributes
}
toString() {
return this.type + (this.path ? `'"${this.path}"'` : "")
}
}