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