| OLD | NEW |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 part of mocks; | 5 part of mocks; |
| 6 | 6 |
| 7 class ScriptRefMock implements M.ScriptRef { | 7 class ScriptRefMock implements M.ScriptRef { |
| 8 final String id; | 8 final String id; |
| 9 final String uri; | 9 final String uri; |
| 10 | 10 |
| 11 const ScriptRefMock({this.id, this.uri}); | 11 const ScriptRefMock({this.id, this.uri}); |
| 12 } | 12 } |
| 13 | 13 |
| 14 typedef int TokenToInt(int token); | 14 typedef int TokenToInt(int token); |
| 15 | 15 |
| 16 class ScriptMock implements M.Script { | 16 class ScriptMock implements M.Script { |
| 17 final String id; | 17 final String id; |
| 18 final M.ClassRef clazz; | 18 final M.ClassRef clazz; |
| 19 final int size; | 19 final int size; |
| 20 final String uri; | 20 final String uri; |
| 21 final String source; | 21 final String source; |
| 22 final M.LibraryRef library; |
| 22 | 23 |
| 23 final TokenToInt _tokenToLine; | 24 final TokenToInt _tokenToLine; |
| 24 final TokenToInt _tokenToCol; | 25 final TokenToInt _tokenToCol; |
| 25 | 26 |
| 27 final DateTime loadTime; |
| 28 final int firstTokenPos; |
| 29 final int lastTokenPos; |
| 30 final int lineOffset; |
| 31 final int columnOffset; |
| 32 |
| 26 int tokenToLine(int token) => _tokenToLine(token); | 33 int tokenToLine(int token) => _tokenToLine(token); |
| 27 int tokenToCol(int token) => _tokenToCol(token); | 34 int tokenToCol(int token) => _tokenToCol(token); |
| 28 | 35 |
| 29 const ScriptMock({this.id, this.clazz, this.size, this.uri, this.source, | 36 const ScriptMock({this.id, this.clazz, this.size, this.uri, this.source, |
| 30 TokenToInt tokenToLine, TokenToInt tokenToCol}) | 37 this.library: const LibraryRefMock(), TokenToInt tokenToLine, |
| 38 TokenToInt tokenToCol, this.loadTime, this.firstTokenPos, |
| 39 this.lastTokenPos, this.lineOffset, this.columnOffset}) |
| 31 : _tokenToLine = tokenToLine, | 40 : _tokenToLine = tokenToLine, |
| 32 _tokenToCol = tokenToCol; | 41 _tokenToCol = tokenToCol; |
| 33 } | 42 } |
| OLD | NEW |