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

Commit

Permalink
fix(di): removed type parameters to accomodate di restriction
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelgj committed Jan 10, 2014
1 parent 9d6914e commit 7646df6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion lib/core_dom/compiler.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ part of angular.core.dom;
class Compiler {
final DirectiveMap directives;
final Profiler _perf;
final Parser<Expression> _parser;
final Parser _parser;
final Expando _expando;

DirectiveSelector selector;
Expand Down
2 changes: 1 addition & 1 deletion lib/filter/filter.dart
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ typedef bool Equals(a, b);
*/
@NgFilter(name: 'filter')
class FilterFilter {
Parser<Expression> _parser;
Parser _parser;
Equals _comparator;
Equals _stringComparator;

Expand Down
2 changes: 1 addition & 1 deletion lib/filter/order_by.dart
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ typedef dynamic Mapper(dynamic e);
*/
@NgFilter(name: 'orderBy')
class OrderByFilter {
Parser<Expression> _parser;
Parser _parser;

OrderByFilter(this._parser);

Expand Down
16 changes: 8 additions & 8 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ packages:
browser:
description: browser
source: hosted
version: "0.9.0"
collection_helpers:
description: collection_helpers
source: hosted
version: "0.9.1"
collection:
description: collection
source: hosted
version: "0.9.0"
di:
description: di
source: hosted
version: "0.0.29"
version: "0.0.32"
html5lib:
description: html5lib
source: hosted
Expand All @@ -32,7 +32,7 @@ packages:
logging:
description: logging
source: hosted
version: "0.9.1"
version: "0.9.1+1"
path:
description: path
source: hosted
Expand All @@ -56,11 +56,11 @@ packages:
unittest:
description: unittest
source: hosted
version: "0.9.2"
version: "0.9.2+1"
unmodifiable_collection:
description: unmodifiable_collection
source: hosted
version: "0.9.1"
version: "0.9.2"
utf:
description: utf
source: hosted
Expand Down

0 comments on commit 7646df6

Please sign in to comment.