OLD | NEW |
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 @TestOn("vm") | 5 @TestOn("vm") |
6 | 6 |
7 import 'package:analyzer/analyzer.dart'; | 7 import 'package:analyzer/analyzer.dart'; |
8 import 'package:unittest/unittest.dart'; | 8 import 'package:test/test.dart'; |
9 import 'package:unittest/src/util/string_literal_iterator.dart'; | 9 import 'package:test/src/util/string_literal_iterator.dart'; |
10 | 10 |
11 final _offset = "final str = ".length; | 11 final _offset = "final str = ".length; |
12 | 12 |
13 void main() { | 13 void main() { |
14 group("returns simple characters in", () { | 14 group("returns simple characters in", () { |
15 test("a single simple string", () { | 15 test("a single simple string", () { |
16 var iter = _parse('"abc"'); | 16 var iter = _parse('"abc"'); |
17 | 17 |
18 expect(iter.current, isNull); | 18 expect(iter.current, isNull); |
19 expect(iter.offset, equals(_offset)); | 19 expect(iter.offset, equals(_offset)); |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
236 }, 'is the rune "$char"'); | 236 }, 'is the rune "$char"'); |
237 } | 237 } |
238 | 238 |
239 /// Parses [dart], which should be a string literal, into a | 239 /// Parses [dart], which should be a string literal, into a |
240 /// [StringLiteralIterator]. | 240 /// [StringLiteralIterator]. |
241 StringLiteralIterator _parse(String dart) { | 241 StringLiteralIterator _parse(String dart) { |
242 var literal = parseCompilationUnit("final str = $dart;") | 242 var literal = parseCompilationUnit("final str = $dart;") |
243 .declarations.single.variables.variables.single.initializer; | 243 .declarations.single.variables.variables.single.initializer; |
244 return new StringLiteralIterator(literal); | 244 return new StringLiteralIterator(literal); |
245 } | 245 } |
OLD | NEW |