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 /// 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 Loading... |
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 Loading... |
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 }; |
OLD | NEW |