Remove redundant call
R=jmesserly@google.com Review URL: https://codereview.chromium.org/1357713006 .
This commit is contained in:
@@ -288,9 +288,7 @@ abstract class AbstractCompiler {
|
||||
: context = context,
|
||||
options = options,
|
||||
checker = createChecker(context.typeProvider, options.strongOptions,
|
||||
reporter ?? AnalysisErrorListener.NULL_LISTENER) {
|
||||
enableDevCompilerInference(context, options.strongOptions);
|
||||
}
|
||||
reporter ?? AnalysisErrorListener.NULL_LISTENER);
|
||||
|
||||
static CodeChecker createChecker(TypeProvider typeProvider,
|
||||
StrongModeOptions options, AnalysisErrorListener reporter) {
|
||||
|
||||
@@ -114,7 +114,7 @@ main(arguments) {
|
||||
|
||||
for (var dir in [null, 'language']) {
|
||||
if (codeCoverage && dir == 'language') continue;
|
||||
|
||||
|
||||
group('dartdevc ' + path.join('test', 'codegen', dir), () {
|
||||
var outDir = new Directory(path.join(expectDir, dir));
|
||||
if (!outDir.existsSync()) outDir.createSync(recursive: true);
|
||||
|
||||
Reference in New Issue
Block a user