This file contains hidden or 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
$ dart example/demo.dart | |
unittest-suite-wait-for-done | |
PASS: smallcheck good | |
ERROR: smallcheck bad | |
Test failed: Caught falsified after 11 tests | |
argument 1: [true] | |
argument 2: [false] | |
package:propcheck/propcheck.dart 93:11 SmallCheck.check | |
example/demo.dart 40:26 main.<fn>.<fn> |
This file contains hidden or 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
Homebrew build logs for git on macOS 10.13.1 | |
Build date: 2018-06-29 17:15:35 |
This file contains hidden or 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
tap "homebrew/cask-versions" | |
tap "homebrew/core" | |
tap "homebrew/cask" | |
tap "homebrew/bundle" | |
tap "homebrew/services" | |
tap "dart-lang/dart" | |
cask "java" | |
cask "osxfuse" | |
brew "bash" | |
brew "bash-completion@2" |
This file contains hidden or 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
Homebrew build logs for git on macOS 10.13.1 | |
Build date: 2018-06-27 11:57:06 |
This file contains hidden or 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
tap "homebrew/cask-versions" | |
tap "homebrew/core" | |
tap "homebrew/cask" | |
tap "homebrew/bundle" | |
tap "homebrew/services" | |
tap "dart-lang/dart" | |
cask "java" | |
cask "osxfuse" | |
brew "bash" | |
brew "bash-completion@2" |
This file contains hidden or 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
Homebrew build logs for git on macOS 10.13.1 | |
Build date: 2018-06-27 11:57:06 |
This file contains hidden or 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
Homebrew build logs for git on macOS 10.13.1 | |
Build date: 2018-06-25 11:59:45 |
This file contains hidden or 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
Homebrew build logs for git on macOS 10.13.1 | |
Build date: 2018-06-22 14:08:59 |
This file contains hidden or 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
void main() { | |
// Lookbehind example | |
final String phrase = "fooback"; | |
final RegExp lookbehindPattern = new RegExp(r'(?<=foo)back'); | |
print('Does lookbehind work? ${lookbehindPattern.hasMatch(phrase)}'); | |
// Negative Lookbehind example | |
// It would match .text or text= but not Me.text or FtextABC | |
final RegExp negativeLookbehind = new RegExp(r'(?<!(Me\.)|[frFR])(text)(?!\w)'); |
This file contains hidden or 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
void main() { | |
// Lookbehind example | |
final String phrase = "fooback"; | |
final RegExp lookbehindPattern = new RegExp(r'(?<=foo)back'); | |
print('Does lookbehind work? ${lookbehindPattern.hasMatch(phrase)}'); | |
// Negative Lookbehind example | |
// It would matched .text or text= but not Me.text or FtextABC | |
final RegExp negativeLookbehind = new RegExp(r'(?<!(Me\.)|[frFR])(text)(?!\w)'); |
NewerOlder