Chromium Code Reviews| Index: dart/lib/compiler/implementation/scanner/partial_parser.dart |
| diff --git a/dart/lib/compiler/implementation/scanner/partial_parser.dart b/dart/lib/compiler/implementation/scanner/partial_parser.dart |
| index 1e792d0410d289bdf483dfab28e04626e6489b8f..b805c92f65fbbe8d1bf9075bbc645100de49adcd 100644 |
| --- a/dart/lib/compiler/implementation/scanner/partial_parser.dart |
| +++ b/dart/lib/compiler/implementation/scanner/partial_parser.dart |
| @@ -56,7 +56,7 @@ class PartialParser extends Parser { |
| } |
| if (!mayParseFunctionExpressions && value === '{') |
|
Lasse Reichstein Nielsen
2012/06/15 11:51:13
While you are here, please put curly braces around
ahe
2012/06/15 13:12:34
No need. It fits on the previous line.
Lasse Reichstein Nielsen
2012/06/15 13:59:14
I generally prefer to put return statements on a l
ahe
2012/06/19 11:02:42
OK. We have used the "bailout" return can go on th
|
| return token; |
| - if ((value !== '<') && (token is BeginGroupToken)) { |
| + if (token is BeginGroupToken) { |
| BeginGroupToken begin = token; |
| token = (begin.endGroup !== null) ? begin.endGroup : token; |
| } |