forked from flutter/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Small fixes before publish (flutter#16)
Fix dartlang URLs in README Fix long line in pubspec Validate hints and warnings on Travis Remove `new` from Example
- Loading branch information
Showing
4 changed files
with
7 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import 'package:boolean_selector/boolean_selector.dart'; | ||
|
||
void main(List<String> args) { | ||
var selector = new BooleanSelector.parse("(x && y) || z"); | ||
var selector = BooleanSelector.parse("(x && y) || z"); | ||
print(selector.evaluate((variable) => args.contains(variable))); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
name: boolean_selector | ||
version: 1.0.5 | ||
description: A flexible syntax for boolean expressions, based on a simplified version of Dart's expression syntax. | ||
description: >- | ||
A flexible syntax for boolean expressions, based on a simplified version of | ||
Dart's expression syntax. | ||
author: Dart Team <[email protected]> | ||
homepage: https://github.com/dart-lang/boolean_selector | ||
|
||
|