Past nodes fixed, codestyle

This commit is contained in:
barsdeveloper
2021-11-07 21:41:40 +01:00
parent afa27bf42c
commit ad8c34cdab
20 changed files with 283 additions and 192 deletions

View File

@@ -2,6 +2,7 @@ import TypeInitialization from "./TypeInitialization"
import Utility from "../Utility"
export default class Entity {
constructor(options = {}) {
/**
*

View File

@@ -15,5 +15,4 @@ export default class LocalizedTextEntity extends Entity {
toString() {
"NSLOCTEXT(" + `"${this.namespace}"` + ", " + `"${this.key}"` + ", " + `"${this.value}"` + ")"
}
}

View File

@@ -1,4 +1,5 @@
export default class Primitive {
toString() {
return "Unimplemented for " + this.constructor.name
}