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

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

Issue 711303002: Fix try/poi/serialize_test after adding class to dart:core. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: No pubspec. 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 | « no previous file | no next file » | 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;
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 }, 391 },
392 { 392 {
393 "name": "ArgumentError", 393 "name": "ArgumentError",
394 "kind": "class" 394 "kind": "class"
395 }, 395 },
396 { 396 {
397 "name": "RangeError", 397 "name": "RangeError",
398 "kind": "class" 398 "kind": "class"
399 }, 399 },
400 { 400 {
401 "name": "IndexError",
402 "kind": "class"
403 },
404 {
401 "name": "FallThroughError", 405 "name": "FallThroughError",
402 "kind": "class" 406 "kind": "class"
403 }, 407 },
404 { 408 {
405 "name": "AbstractClassInstantiationError", 409 "name": "AbstractClassInstantiationError",
406 "kind": "class" 410 "kind": "class"
407 }, 411 },
408 { 412 {
409 "name": "NoSuchMethodError", 413 "name": "NoSuchMethodError",
410 "kind": "class" 414 "kind": "class"
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
596 "name": "noSuchMethod", 600 "name": "noSuchMethod",
597 "kind": "function", 601 "kind": "function",
598 "type": "(Invocation) -> dynamic" 602 "type": "(Invocation) -> dynamic"
599 }, 603 },
600 { 604 {
601 "name": "runtimeType", 605 "name": "runtimeType",
602 "kind": "getter" 606 "kind": "getter"
603 } 607 }
604 ] 608 ]
605 }; 609 };
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698