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.
Roll Dart to version be63096 (flutter#5987)
This rolls includes the following changes: be63096 (HEAD) Analyze pkg/dart2js_tools on the bots. 6f9073b Wait for Analysis Server errors only while waiting for a response. 5d4e85b Allow `x == null` to be a constant value whenever x is const. 7c77ed0 Move deobfuscation tools to the SDK repo 666c8c1 Fix @visibleForTemplate tests on Windows. 6fc1dd4 analyzer_plugin no implicit-casts. 2940157 Get documentation comments before metadata as well. 3d0a663 [vm/frontend-server] Fix frontend_server so that it can be tested. * fix analyzer hint * use --enable-asserts instead of --checked
- Loading branch information
1 parent
d90223f
commit 2ab499d
Showing
5 changed files
with
57 additions
and
53 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
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,7 +1,12 @@ | ||
library frontend_server; | ||
|
||
import 'dart:io'; | ||
|
||
import 'package:frontend_server/server.dart'; | ||
|
||
void main(List<String> args){ | ||
starter(args); | ||
void main(List<String> args) async { | ||
final int exitCode = await starter(args); | ||
if (exitCode != 0) { | ||
exit(exitCode); | ||
} | ||
} |
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