Skip to content
This repository was archived by the owner on Feb 22, 2018. It is now read-only.

Commit 8b8d2e2

Browse files
committed
1 parent 97d73b2 commit 8b8d2e2

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

lib/src/compiler.dart

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -288,9 +288,7 @@ abstract class AbstractCompiler {
288288
: context = context,
289289
options = options,
290290
checker = createChecker(context.typeProvider, options.strongOptions,
291-
reporter ?? AnalysisErrorListener.NULL_LISTENER) {
292-
enableDevCompilerInference(context, options.strongOptions);
293-
}
291+
reporter ?? AnalysisErrorListener.NULL_LISTENER);
294292

295293
static CodeChecker createChecker(TypeProvider typeProvider,
296294
StrongModeOptions options, AnalysisErrorListener reporter) {

test/codegen_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ main(arguments) {
114114

115115
for (var dir in [null, 'language']) {
116116
if (codeCoverage && dir == 'language') continue;
117-
117+
118118
group('dartdevc ' + path.join('test', 'codegen', dir), () {
119119
var outDir = new Directory(path.join(expectDir, dir));
120120
if (!outDir.existsSync()) outDir.createSync(recursive: true);

0 commit comments

Comments
 (0)