Skip to content

Commit

Permalink
Merge pull request flutter#19 from srawlins/fix-runtime
Browse files Browse the repository at this point in the history
Fix runtime cast issue
  • Loading branch information
srawlins authored May 2, 2018
2 parents aa582bc + f1476d6 commit b49dea0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.1.6

* Improve support for Dart 2 runtime semantics.

## 1.1.5

* Declare support for `async` 2.0.0.
Expand Down
2 changes: 1 addition & 1 deletion lib/src/ast.dart
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ class SequenceNode extends AstNode {

var text = literal.text;
if (context.style == p.Style.windows) text = text.replaceAll("/", "\\");
var components = context.split(text);
Iterable<String> components = context.split(text);

// If the first component is absolute, that means it's a separator (on
// Windows some non-separator things are also absolute, but it's invalid
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: glob
version: 1.1.5
version: 1.1.6
author: "Dart Team <[email protected]>"
homepage: https://github.com/dart-lang/glob
description: Bash-style filename globbing.
Expand Down

0 comments on commit b49dea0

Please sign in to comment.