improve babylon test coverage and remove dead code

This commit is contained in:
Sebastian McKenzie
2015-07-25 19:54:19 +01:00
parent 2948108c90
commit 23aa7b002d
20 changed files with 267 additions and 76 deletions

View File

@@ -8,10 +8,6 @@ export class Position {
this.line = line;
this.column = col;
}
offset(n) {
return new Position(this.line, this.column + n);
}
}
export class SourceLocation {