Preliminary strings

While not well-wrought, it's at least possible now to log some stuff when debugging
This commit is contained in:
dcodeIO
2018-01-27 05:35:14 +01:00
parent b548b5c81f
commit de066fc128
22 changed files with 1267 additions and 112 deletions

View File

@ -361,8 +361,8 @@ export abstract class Node {
stmt.decoratorKind = DecoratorKind.OPERATOR;
break;
case "explicit":
stmt.decoratorKind = DecoratorKind.EXPLICIT;
case "unmanaged":
stmt.decoratorKind = DecoratorKind.UNMANAGED;
break;
case "offset":
@ -1159,7 +1159,7 @@ export const enum DecoratorKind {
CUSTOM,
GLOBAL,
OPERATOR,
EXPLICIT,
UNMANAGED,
OFFSET
}