Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Side by Side Diff: tests/try/poi/serialize_test.dart

Issue 694353007: Move dart2js from sdk/lib/_internal/compiler to pkg/compiler (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tests/try/poi/poi_find_test.dart ('k') | tests/utils/dart2js_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 /// Test that poi.dart can serialize a scope. 5 /// Test that poi.dart can serialize a scope.
6 6
7 library trydart.serialize_test; 7 library trydart.serialize_test;
8 8
9 import 'dart:io' show 9 import 'dart:io' show
10 Platform; 10 Platform;
11 11
12 import 'dart:async' show 12 import 'dart:async' show
13 Future; 13 Future;
14 14
15 import 'dart:convert' show 15 import 'dart:convert' show
16 JSON; 16 JSON;
17 17
18 import 'package:try/poi/poi.dart' as poi; 18 import 'package:try/poi/poi.dart' as poi;
19 19
20 import 'package:async_helper/async_helper.dart'; 20 import 'package:async_helper/async_helper.dart';
21 21
22 import 'package:expect/expect.dart'; 22 import 'package:expect/expect.dart';
23 23
24 import 'package:compiler/implementation/elements/elements.dart' show 24 import 'package:compiler/src/elements/elements.dart' show
25 Element; 25 Element;
26 26
27 import 'package:compiler/implementation/source_file_provider.dart' show 27 import 'package:compiler/src/source_file_provider.dart' show
28 FormattingDiagnosticHandler; 28 FormattingDiagnosticHandler;
29 29
30 Future testInteresting() { 30 Future testInteresting() {
31 Uri script = Platform.script.resolve('data/interesting.dart'); 31 Uri script = Platform.script.resolve('data/interesting.dart');
32 FormattingDiagnosticHandler handler = new FormattingDiagnosticHandler(); 32 FormattingDiagnosticHandler handler = new FormattingDiagnosticHandler();
33 33
34 int position = 263; 34 int position = 263;
35 35
36 Future future = poi.runPoi(script, position, handler.provider, handler); 36 Future future = poi.runPoi(script, position, handler.provider, handler);
37 return future.then((Element element) { 37 return future.then((Element element) {
(...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after
596 "name": "noSuchMethod", 596 "name": "noSuchMethod",
597 "kind": "function", 597 "kind": "function",
598 "type": "(Invocation) -> dynamic" 598 "type": "(Invocation) -> dynamic"
599 }, 599 },
600 { 600 {
601 "name": "runtimeType", 601 "name": "runtimeType",
602 "kind": "getter" 602 "kind": "getter"
603 } 603 }
604 ] 604 ]
605 }; 605 };
OLDNEW
« no previous file with comments | « tests/try/poi/poi_find_test.dart ('k') | tests/utils/dart2js_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698