Resolve exports and imports; Initial work on binary and unary ops

This commit is contained in:
dcodeIO
2017-09-29 17:25:02 +02:00
parent 2e611610f2
commit e14d02e040
11 changed files with 621 additions and 111 deletions

View File

@ -151,6 +151,7 @@ export abstract class DiagnosticEmitter {
const message: DiagnosticMessage = DiagnosticMessage.create(code, category, arg0, arg1).withRange(range);
this.diagnostics.push(message);
console.log(formatDiagnosticMessage(message, true, true)); // temporary
console.log(new Error().stack);
}
error(code: DiagnosticCode, range: Range, arg0: string | null = null, arg1: string | null = null): void {