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

Commit b691fd9

Browse files
vicbtravis@travis-ci.org
authored and
travis@travis-ci.org
committed
chore(pubspec): bump SDK version (>= 1.4.0)
Closes #1009
1 parent efcdca3 commit b691fd9

File tree

3 files changed

+4
-10
lines changed

3 files changed

+4
-10
lines changed

pubspec.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ packages:
2424
code_transformers:
2525
description: code_transformers
2626
source: hosted
27-
version: "0.1.3"
27+
version: "0.1.3+1"
2828
collection:
2929
description: collection
3030
source: hosted
@@ -36,7 +36,7 @@ packages:
3636
guinness:
3737
description: guinness
3838
source: hosted
39-
version: "0.1.3"
39+
version: "0.1.4"
4040
html5lib:
4141
description: html5lib
4242
source: hosted

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ authors:
1111
description: Angular for dart.
1212
homepage: https://angulardart.org
1313
environment:
14-
sdk: '>=1.3.0'
14+
sdk: '>=1.4.0'
1515
dependencies:
1616
args: '>=0.10.0 < 0.11.0'
1717
analyzer: '>=0.13.0 <0.14.0'

test/core/scope_spec.dart

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1291,13 +1291,7 @@ void main() {
12911291

12921292
it('should properly watch array of fields 3', (RootScope rootScope, Logger log) {
12931293
rootScope.context['foo'] = 'abc';
1294-
String expression = 'foo.contains("b")';
1295-
if (identical(1, 1.0)) { // dart2js
1296-
// The previous expression does not work in dart2js (http://dartbug.com/18673)
1297-
// Use a working one for now.
1298-
expression = 'foo.contains("b", 0)';
1299-
}
1300-
rootScope.watch(expression, (v, o) => log([v, o]));
1294+
rootScope.watch('foo.contains("b")', (v, o) => log([v, o]));
13011295
expect(log).toEqual([]);
13021296
rootScope.apply();
13031297
expect(log).toEqual([[true, null]]);

0 commit comments

Comments
 (0)