Static operator overloads

This commit is contained in:
dcodeIO
2018-01-28 06:18:27 +01:00
parent 3165f4337f
commit b1e7b75ad7
16 changed files with 379 additions and 149 deletions

View File

@ -278,6 +278,10 @@ export class Range {
start: i32;
end: i32;
// TODO: set these while tokenizing
// line: i32;
// column: i32;
constructor(source: Source, start: i32, end: i32) {
this.source = source;
this.start = start;