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 514 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
525 }, | 525 }, |
526 { | 526 { |
527 "name": "Match", | 527 "name": "Match", |
528 "kind": "class" | 528 "kind": "class" |
529 }, | 529 }, |
530 { | 530 { |
531 "name": "RegExp", | 531 "name": "RegExp", |
532 "kind": "class" | 532 "kind": "class" |
533 }, | 533 }, |
534 { | 534 { |
535 "name": "Resource", | |
536 "kind": "class" | |
537 }, | |
538 { | |
539 "name": "Set", | 535 "name": "Set", |
540 "kind": "class" | 536 "kind": "class" |
541 }, | 537 }, |
542 { | 538 { |
543 "name": "Sink", | 539 "name": "Sink", |
544 "kind": "class" | 540 "kind": "class" |
545 }, | 541 }, |
546 { | 542 { |
547 "name": "StackTrace", | 543 "name": "StackTrace", |
548 "kind": "class" | 544 "kind": "class" |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
607 "name": "noSuchMethod", | 603 "name": "noSuchMethod", |
608 "kind": "function", | 604 "kind": "function", |
609 "type": "(Invocation) -> dynamic" | 605 "type": "(Invocation) -> dynamic" |
610 }, | 606 }, |
611 { | 607 { |
612 "name": "runtimeType", | 608 "name": "runtimeType", |
613 "kind": "getter" | 609 "kind": "getter" |
614 } | 610 } |
615 ] | 611 ] |
616 }; | 612 }; |
OLD | NEW |