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

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

Issue 1381033002: Add data-URI support class to dart:core (next to Uri). (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Remove VM assertion that appears to be incorrect. Created 5 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
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 564 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698