This commit is contained in:
TheBrokenRail 2024-07-14 22:10:04 -04:00
parent 11342dbb78
commit 346d4403df

View File

@ -1,4 +1,4 @@
import { formatType } from './common'; import { INTERNAL, formatType } from './common';
export class Property { export class Property {
readonly offset: number; readonly offset: number;
@ -16,7 +16,7 @@ export class Property {
// Getters // Getters
type() { type() {
return `__type_${this.fullName()}`; return `${INTERNAL}type_${this.fullName()}`;
} }
typedef() { typedef() {
let arrayInfo = ''; let arrayInfo = '';