Skip to content
This repository has been archived by the owner on Feb 22, 2018. It is now read-only.

fix(dynamic_parser): Handle reserved words correctly. #614

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix a few warnings (unused imports, missing return).
  • Loading branch information
kasperl committed Feb 25, 2014
commit f948a64f1b61b57145e05cafc5debc0a33fd46cc
1 change: 1 addition & 0 deletions lib/core/scope.dart
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,7 @@ class Scope {
assert(locals == null);
if (expression is EvalFunction1) return expression(context);
if (expression is EvalFunction0) return expression();
return null;
}
}

Expand Down
1 change: 0 additions & 1 deletion lib/core_dom/module.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import 'package:perf_api/perf_api.dart';

import 'package:angular/core/module.dart';
import 'package:angular/core/parser/parser.dart';
import 'package:angular/utils.dart';

part 'block.dart';
part 'block_factory.dart';
Expand Down
1 change: 0 additions & 1 deletion lib/tools/source_metadata_extractor.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import 'package:analyzer/src/generated/ast.dart';

import 'package:angular/tools/source_crawler.dart';
import 'package:angular/tools/common.dart';
import 'package:angular/utils.dart';

const String _COMPONENT = '-component';
const String _DIRECTIVE = '-directive';
Expand Down
2 changes: 1 addition & 1 deletion run-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e

export DART_SDK=`which dart | sed -e 's/\/dart\-sdk\/.*$/\/dart-sdk/'`
# export DART_SDK=`which dart | sed -e 's/\/dart\-sdk\/.*$/\/dart-sdk/'`

# OS-specific Dartium path defaults
case $( uname -s ) in
Expand Down