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

Side by Side Diff: LayoutTests/dart/inspector/scope-variables.dart

Issue 1663753002: Apply all blink changes between @202695 and tip of trunk (Closed) Base URL: svn://svn.chromium.org/blink/branches/dart/2454_1
Patch Set: Created 4 years, 10 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 | Annotate | Revision Log
OLDNEW
1 library scope_variables_test; 1 library scope_variables_test;
2 2
3 import 'dart:core' as core; // import with prefix so global dart:core fields don 't appear in scope chain. 3 import 'dart:core' as core; // import with prefix so global dart:core fields don 't appear in scope chain.
4 import 'dart:html' as html; // import with prefix so global dart:html fields don 't appear in scope chain. 4 import 'dart:html' as html; // import with prefix so global dart:html fields don 't appear in scope chain.
5 5
6 main() { 6 main() {
7 html.window.onMessage.listen(handleMessage); 7 html.window.onMessage.listen(handleMessage);
8 } 8 }
9 9
10 handleMessage(event) { 10 handleMessage(event) {
(...skipping 22 matching lines...) Expand all
33 return "[Instance of A, d = $d]"; 33 return "[Instance of A, d = $d]";
34 } 34 }
35 } 35 }
36 36
37 var globalVariable = 'globalString'; 37 var globalVariable = 'globalString';
38 38
39 var globalMapVariable = {'foo': 'bar', 'baz': 42}; 39 var globalMapVariable = {'foo': 'bar', 'baz': 42};
40 40
41 var globalArrayVariable = [3, 1, 4, 1, 5, 9]; 41 var globalArrayVariable = [3, 1, 4, 1, 5, 9];
42 42
43 String get throwingGetter { 43 core.String get throwingGetter {
44 throw 'only the best reviews'; 44 throw 'only the best reviews';
45 } 45 }
46 46
47 html.DivElement get exampleDivGetter => html.query("#example_div"); 47 html.DivElement get exampleDivGetter => html.query("#example_div");
OLDNEW
« no previous file with comments | « LayoutTests/dart/inspector/debugger-expected.txt ('k') | LayoutTests/dart/inspector/scope-variables-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698