| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 // This code was auto-generated, is not intended to be edited, and is subject to | 5 // This code was auto-generated, is not intended to be edited, and is subject to |
| 6 // significant change. Please see the README file for more information. | 6 // significant change. Please see the README file for more information. |
| 7 | 7 |
| 8 library engine.utilities_test; | 8 library engine.utilities_test; |
| 9 | 9 |
| 10 import 'dart:collection'; | 10 import 'dart:collection'; |
| (...skipping 2777 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2788 | 2788 |
| 2789 class Getter_NodeReplacerTest_test_forEachStatement_withIdentifier_2 implements | 2789 class Getter_NodeReplacerTest_test_forEachStatement_withIdentifier_2 implements |
| 2790 NodeReplacerTest_Getter { | 2790 NodeReplacerTest_Getter { |
| 2791 @override | 2791 @override |
| 2792 SimpleIdentifier get(ForEachStatement node) => node.identifier; | 2792 SimpleIdentifier get(ForEachStatement node) => node.identifier; |
| 2793 } | 2793 } |
| 2794 | 2794 |
| 2795 class Getter_NodeReplacerTest_test_forEachStatement_withIdentifier_3 implements | 2795 class Getter_NodeReplacerTest_test_forEachStatement_withIdentifier_3 implements |
| 2796 NodeReplacerTest_Getter { | 2796 NodeReplacerTest_Getter { |
| 2797 @override | 2797 @override |
| 2798 Expression get(ForEachStatement node) => node.iterator; | 2798 Expression get(ForEachStatement node) => node.iterable; |
| 2799 } | 2799 } |
| 2800 | 2800 |
| 2801 class Getter_NodeReplacerTest_test_forEachStatement_withLoopVariable implements | 2801 class Getter_NodeReplacerTest_test_forEachStatement_withLoopVariable implements |
| 2802 NodeReplacerTest_Getter { | 2802 NodeReplacerTest_Getter { |
| 2803 @override | 2803 @override |
| 2804 Expression get(ForEachStatement node) => node.iterator; | 2804 Expression get(ForEachStatement node) => node.iterable; |
| 2805 } | 2805 } |
| 2806 | 2806 |
| 2807 class Getter_NodeReplacerTest_test_forEachStatement_withLoopVariable_2 | 2807 class Getter_NodeReplacerTest_test_forEachStatement_withLoopVariable_2 |
| 2808 implements NodeReplacerTest_Getter { | 2808 implements NodeReplacerTest_Getter { |
| 2809 @override | 2809 @override |
| 2810 DeclaredIdentifier get(ForEachStatement node) => node.loopVariable; | 2810 DeclaredIdentifier get(ForEachStatement node) => node.loopVariable; |
| 2811 } | 2811 } |
| 2812 | 2812 |
| 2813 class Getter_NodeReplacerTest_test_forEachStatement_withLoopVariable_3 | 2813 class Getter_NodeReplacerTest_test_forEachStatement_withLoopVariable_3 |
| 2814 implements NodeReplacerTest_Getter { | 2814 implements NodeReplacerTest_Getter { |
| (...skipping 2484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5299 } | 5299 } |
| 5300 | 5300 |
| 5301 void test_get_added() { | 5301 void test_get_added() { |
| 5302 TokenMap tokenMap = new TokenMap(); | 5302 TokenMap tokenMap = new TokenMap(); |
| 5303 Token key = TokenFactory.tokenFromType(TokenType.AT); | 5303 Token key = TokenFactory.tokenFromType(TokenType.AT); |
| 5304 Token value = TokenFactory.tokenFromType(TokenType.AT); | 5304 Token value = TokenFactory.tokenFromType(TokenType.AT); |
| 5305 tokenMap.put(key, value); | 5305 tokenMap.put(key, value); |
| 5306 expect(tokenMap.get(key), same(value)); | 5306 expect(tokenMap.get(key), same(value)); |
| 5307 } | 5307 } |
| 5308 } | 5308 } |
| OLD | NEW |