167107e94c
Separate analysis options initialization from context setup so that analysis options can be used to correctly setup the SDK in strong mode. Fix https://github.com/dart-lang/sdk/issues/28507 R=brianwilkerson@google.com Review-Url: https://codereview.chromium.org/2678633002 .
8 lines
109 B
Dart
8 lines
109 B
Dart
import 'dart:js';
|
|
|
|
typedef dynamic Func(String x, String y);
|
|
|
|
Func bar(Func f) {
|
|
return allowInterop(f);
|
|
}
|