| 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 564 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 575 "name": "Symbol", | 575 "name": "Symbol", |
| 576 "kind": "class" | 576 "kind": "class" |
| 577 }, | 577 }, |
| 578 { | 578 { |
| 579 "name": "Type", | 579 "name": "Type", |
| 580 "kind": "class" | 580 "kind": "class" |
| 581 }, | 581 }, |
| 582 { | 582 { |
| 583 "name": "Uri", | 583 "name": "Uri", |
| 584 "kind": "class" | 584 "kind": "class" |
| 585 }, |
| 586 { |
| 587 "name": "UriData", |
| 588 "kind": "class" |
| 585 } | 589 } |
| 586 ]; | 590 ]; |
| 587 | 591 |
| 588 final object = { | 592 final object = { |
| 589 "name": "Object", | 593 "name": "Object", |
| 590 "kind": "instance side", | 594 "kind": "instance side", |
| 591 "members": [ | 595 "members": [ |
| 592 { | 596 { |
| 593 "name": "==", | 597 "name": "==", |
| 594 "kind": "function", | 598 "kind": "function", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 607 "name": "noSuchMethod", | 611 "name": "noSuchMethod", |
| 608 "kind": "function", | 612 "kind": "function", |
| 609 "type": "(Invocation) -> dynamic" | 613 "type": "(Invocation) -> dynamic" |
| 610 }, | 614 }, |
| 611 { | 615 { |
| 612 "name": "runtimeType", | 616 "name": "runtimeType", |
| 613 "kind": "getter" | 617 "kind": "getter" |
| 614 } | 618 } |
| 615 ] | 619 ] |
| 616 }; | 620 }; |
| OLD | NEW |