mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 12:24:24 +00:00
enable fasta scanner in analyzer by default
R=paulberry@google.com Review-Url: https://codereview.chromium.org/2970883004 .
This commit is contained in:
parent
ce43a15e51
commit
d16163ca0b
1 changed files with 2 additions and 1 deletions
|
@ -129,7 +129,8 @@ abstract class Scanner {
|
|||
* A flag indicating whether the analyzer [Scanner] factory method
|
||||
* will return a fasta based scanner or an analyzer based scanner.
|
||||
*/
|
||||
static bool useFasta = const bool.fromEnvironment("useFastaScanner");
|
||||
static bool useFasta =
|
||||
const bool.fromEnvironment("useFastaScanner", defaultValue: true);
|
||||
|
||||
/**
|
||||
* The reader used to access the characters in the source.
|
||||
|
|
Loading…
Reference in a new issue