-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce `mirrors.dart` and make use of it for creating mirrors. This should make dart2js work a little bit better. As a side effect of the reworks dropped support of invoking methods starting with `get`. fix #62
- Loading branch information
Showing
14 changed files
with
466 additions
and
330 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,32 @@ | ||
language: dart | ||
dist: trusty | ||
sudo: false | ||
|
||
addons: | ||
firefox: 53.0.3 | ||
apt: | ||
packages: | ||
- google-chrome-stable | ||
|
||
dart: | ||
- stable | ||
- 1.23.0 | ||
- 1.22.0 | ||
- 1.21.1 | ||
- 1.20.1 | ||
- 1.19.1 | ||
script: ./build.sh | ||
|
||
before_script: | ||
- export DISPLAY=:99.0 | ||
- sh -e /etc/init.d/xvfb start & | ||
- sleep 3 | ||
|
||
script: ./build.sh | ||
|
||
branches: | ||
only: | ||
- master | ||
|
||
cache: | ||
directories: | ||
- $HOME/.pub-cache |
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
Oops, something went wrong.