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

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

Issue 1181663002: Add Resource class. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Add suppression for analyzer warnings. Created 5 years, 6 months 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
« no previous file with comments | « sdk/lib/core/resource.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 514 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 };
OLDNEW
« no previous file with comments | « sdk/lib/core/resource.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698