5474ce01d5
It's possible for `dart.fn` (tearoff) to be called after `dart.lazyFn`, so lazyFn needs to support a setter. Change-Id: Iaba1a1d6145d94501c77de6a6a2c107eac2d92d7 Reviewed-on: https://dart-review.googlesource.com/51441 Reviewed-by: Vijay Menon <vsm@google.com>
19 lines
784 B
Dart
19 lines
784 B
Dart
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
part of dart._js_helper;
|
|
|
|
// Obsolete in dart dev compiler. Added only so that the same version of
|
|
// dart:html can be used in dart2js an dev compiler.
|
|
F convertDartClosureToJS<F>(F closure, int arity) {
|
|
return closure;
|
|
}
|
|
|
|
// Warning: calls to these methods need to be removed before custom elements
|
|
// and cross-frame dom objects behave correctly in ddc
|
|
// https://github.com/dart-lang/sdk/issues/28326
|
|
setNativeSubclassDispatchRecord(proto, interceptor) {}
|
|
findDispatchTagForInterceptorClass(interceptorClassConstructor) {}
|
|
makeLeafDispatchRecord(interceptor) {}
|