Eliminate @builtin decorator for compatibility with TS

This commit is contained in:
dcodeIO
2018-03-21 16:29:08 +01:00
parent 56d891583e
commit 49f4d3dff1
22 changed files with 949 additions and 984 deletions

View File

@ -1395,10 +1395,6 @@ export class ASTBuilder {
sb.push("@global\n");
indent(sb, indentLevel);
}
if (node.is(CommonFlags.BUILTIN)) {
sb.push("@builtin\n");
indent(sb, indentLevel);
}
if (node.is(CommonFlags.UNMANAGED)) {
sb.push("@unmanaged\n");
indent(sb, indentLevel);