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

Side by Side Diff: packages/dart_style/test/regression/0100/0186.stmt

Issue 1400473008: Roll Observatory packages and add a roll script (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 years, 2 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
OLDNEW
(Empty)
1 >>>
2 return JSON.encode((span == null)
3 ? [{'method': kind, 'params': {'message': entry.message}}]
4 : [
5 {
6 'method': kind,
7 'params': {
8 'file': span.sourceUrl.toString(),
9 'message': entry.message,
10 'line': span.start.line + 1,
11 'charStart': span.start.offset,
12 'charEnd': span.end.offset,
13 }
14 }
15 ]);
16 <<<
17 return JSON.encode((span == null)
18 ? [
19 {
20 'method': kind,
21 'params': {'message': entry.message}
22 }
23 ]
24 : [
25 {
26 'method': kind,
27 'params': {
28 'file': span.sourceUrl.toString(),
29 'message': entry.message,
30 'line': span.start.line + 1,
31 'charStart': span.start.offset,
32 'charEnd': span.end.offset,
33 }
34 }
35 ]);
OLDNEW
« no previous file with comments | « packages/dart_style/test/regression/0100/0185.stmt ('k') | packages/dart_style/test/regression/0100/0187.stmt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698