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 String vmName; |
19 final int size; | 20 final int size; |
20 final String uri; | 21 final String uri; |
21 final String source; | 22 final String source; |
22 final M.LibraryRef library; | 23 final M.LibraryRef library; |
23 | 24 |
24 final TokenToInt _tokenToLine; | 25 final TokenToInt _tokenToLine; |
25 final TokenToInt _tokenToCol; | 26 final TokenToInt _tokenToCol; |
26 | 27 |
27 final DateTime loadTime; | 28 final DateTime loadTime; |
28 final int firstTokenPos; | 29 final int firstTokenPos; |
29 final int lastTokenPos; | 30 final int lastTokenPos; |
30 final int lineOffset; | 31 final int lineOffset; |
31 final int columnOffset; | 32 final int columnOffset; |
32 | 33 |
33 int tokenToLine(int token) => _tokenToLine(token); | 34 int tokenToLine(int token) => _tokenToLine(token); |
34 int tokenToCol(int token) => _tokenToCol(token); | 35 int tokenToCol(int token) => _tokenToCol(token); |
35 | 36 |
36 const ScriptMock({this.id, this.clazz, this.size, this.uri, this.source, | 37 const ScriptMock({this.id: 'script-id', this.vmName: 'script-vmNmae', |
37 this.library: const LibraryRefMock(), TokenToInt tokenToLine, | 38 this.clazz, this.size, this.uri, this.source, |
38 TokenToInt tokenToCol, this.loadTime, this.firstTokenPos, | 39 this.library: const LibraryRefMock(), |
39 this.lastTokenPos, this.lineOffset, this.columnOffset}) | 40 TokenToInt tokenToLine, TokenToInt tokenToCol, |
| 41 this.loadTime, this.firstTokenPos, this.lastTokenPos, |
| 42 this.lineOffset, this.columnOffset}) |
40 : _tokenToLine = tokenToLine, | 43 : _tokenToLine = tokenToLine, |
41 _tokenToCol = tokenToCol; | 44 _tokenToCol = tokenToCol; |
42 } | 45 } |
OLD | NEW |