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

Issue 16562012: Dart formatter babysteps. (Closed)

Created:
7 years, 6 months ago by pquitslund
Modified:
7 years, 6 months ago
CC:
reviews_dartlang.org
Visibility:
Public.

Description

Dart formatter babysteps. Largely scaffolding and basic datastructures. Very much subject to change. Dart style pointers greatly appreciated! :) R=brianwilkerson@google.com, messick@google.com, rnystrom@google.com Committed: https://code.google.com/p/dart/source/detail?r=23769

Patch Set 1 #

Total comments: 54
Unified diffs Side-by-side diffs Delta from patch set Stats (+363 lines, -0 lines) Patch
A pkg/analyzer_experimental/lib/src/services/formatter.dart View 1 chunk +10 lines, -0 lines 3 comments Download
A pkg/analyzer_experimental/lib/src/services/formatter_impl.dart View 1 chunk +291 lines, -0 lines 49 comments Download
A pkg/analyzer_experimental/test/services/formatter_test.dart View 1 chunk +62 lines, -0 lines 2 comments Download

Messages

Total messages: 8 (0 generated)
pquitslund
Not much here as of yet but enough to put a stake on the ground ...
7 years, 6 months ago (2013-06-06 22:06:11 UTC) #1
Brian Wilkerson
LGTM https://codereview.chromium.org/16562012/diff/1/pkg/analyzer_experimental/lib/src/services/formatter_impl.dart File pkg/analyzer_experimental/lib/src/services/formatter_impl.dart (right): https://codereview.chromium.org/16562012/diff/1/pkg/analyzer_experimental/lib/src/services/formatter_impl.dart#newcode129 pkg/analyzer_experimental/lib/src/services/formatter_impl.dart:129: return scanner.tokenize(); I noticed that you're testing for ...
7 years, 6 months ago (2013-06-06 22:21:58 UTC) #2
Bob Nystrom
A few nits, but the style is otherwise quite nice. Looks like you're about 85% ...
7 years, 6 months ago (2013-06-06 22:23:06 UTC) #3
messick
LGTM Great to see this! https://codereview.chromium.org/16562012/diff/1/pkg/analyzer_experimental/lib/src/services/formatter_impl.dart File pkg/analyzer_experimental/lib/src/services/formatter_impl.dart (right): https://codereview.chromium.org/16562012/diff/1/pkg/analyzer_experimental/lib/src/services/formatter_impl.dart#newcode15 pkg/analyzer_experimental/lib/src/services/formatter_impl.dart:15: /// OS line separator. ...
7 years, 6 months ago (2013-06-07 13:51:36 UTC) #4
pquitslund
Thanks a million all! I think Bob's assessment of me being 85% there is overly ...
7 years, 6 months ago (2013-06-07 19:45:01 UTC) #5
pquitslund
Committed patchset #1 manually as r23769 (presubmit successful).
7 years, 6 months ago (2013-06-07 19:53:45 UTC) #6
Brian Wilkerson
https://codereview.chromium.org/16562012/diff/1/pkg/analyzer_experimental/lib/src/services/formatter_impl.dart File pkg/analyzer_experimental/lib/src/services/formatter_impl.dart (right): https://codereview.chromium.org/16562012/diff/1/pkg/analyzer_experimental/lib/src/services/formatter_impl.dart#newcode82 pkg/analyzer_experimental/lib/src/services/formatter_impl.dart:82: class CodeFormatterImpl implements CodeFormatter, AnalysisErrorListener { > As such ...
7 years, 6 months ago (2013-06-07 19:55:11 UTC) #7
Bob Nystrom
7 years, 6 months ago (2013-06-10 21:15:45 UTC) #8
Message was sent while issue was closed.
https://codereview.chromium.org/16562012/diff/1/pkg/analyzer_experimental/lib...
File pkg/analyzer_experimental/lib/src/services/formatter.dart (right):

https://codereview.chromium.org/16562012/diff/1/pkg/analyzer_experimental/lib...
pkg/analyzer_experimental/lib/src/services/formatter.dart:7: import
'package:analyzer_experimental/src/services/formatter_impl.dart';
On 2013/06/07 19:45:01, pquitslund wrote:
> On 2013/06/06 22:23:06, Bob Nystrom wrote:
> > Why the separation? Why not just move stuff directly into here?
> 
> My thinking was so that I can choose what abstractions to export as API
without
> having to resort to underscoring all of my type names.  But maybe there's a
> better way?

Yeah, I guess that works.

https://codereview.chromium.org/16562012/diff/1/pkg/analyzer_experimental/lib...
File pkg/analyzer_experimental/lib/src/services/formatter_impl.dart (right):

https://codereview.chromium.org/16562012/diff/1/pkg/analyzer_experimental/lib...
pkg/analyzer_experimental/lib/src/services/formatter_impl.dart:12: import
'package:analyzer_experimental/src/generated/source.dart';
On 2013/06/07 19:45:01, pquitslund wrote:
> On 2013/06/06 22:23:06, Bob Nystrom wrote:
> > These are fine, but you can also use relative imports for these if you
prefer.
> 
> I thought this would lead to woes if I ever wanted to debug in dartium?  I
> vaguely recall that this was the crux of some issues were seeing with
stepping. 
> Again: I'm probably mis-remembering.  Or it's been since fixed!

It's very confusing, unfortunately. The basic rule is you can use relative
imports from stuff under lib/ to stuff under that same lib/ directory. Anything
that reaches out of or into a lib/ directory should use package:.

https://codereview.chromium.org/16562012/diff/1/pkg/analyzer_experimental/lib...
pkg/analyzer_experimental/lib/src/services/formatter_impl.dart:216: Edit
getLastEdit();
On 2013/06/07 19:45:01, pquitslund wrote:
> On 2013/06/06 22:23:06, Bob Nystrom wrote:
> > You'll already have edits.last, so I'd ditch this.
> 
> Right but for some reason I convinced myself that I'd like to return null if
the
> edit list is empty (rather than throwing an exception). I *think* this makes
it
> easier on callers.

They could just do edits.isEmpty to check for that case.

Powered by Google App Engine
This is Rietveld 408576698