blob: 89c90d5243c79ef71bb86c7ac038efb33fdc615b [file] [log] [blame]
// Copyright (c) 2015, 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.
/// This library defines runtime operations on objects used by the code
/// generator.
part of dart._runtime;
// TODO(jmesserly): remove this in favor of _Invocation.
class InvocationImpl extends Invocation {
final Symbol memberName;
final List positionalArguments;
final Map<Symbol, dynamic> namedArguments;
final List<Type> typeArguments;
final bool isMethod;
final bool isGetter;
final bool isSetter;
final String failureMessage;
InvocationImpl(memberName, List<Object?> positionalArguments,
{namedArguments,
List typeArguments = const [],
this.isMethod = false,
this.isGetter = false,
this.isSetter = false,
this.failureMessage = 'method not found'})
: memberName =
isSetter ? _setterSymbol(memberName) : _dartSymbol(memberName),
positionalArguments = List.unmodifiable(positionalArguments),
namedArguments = _namedArgsToSymbols(namedArguments),
typeArguments = List.unmodifiable(typeArguments.map(wrapType));
static Map<Symbol, dynamic> _namedArgsToSymbols(namedArgs) {
if (namedArgs == null) return const {};
return Map.unmodifiable(Map.fromIterable(getOwnPropertyNames(namedArgs),
key: _dartSymbol, value: (k) => JS('', '#[#]', namedArgs, k)));
}
}
/// Given an object and a method name, tear off the method.
/// Sets the runtime type of the torn off method appropriately,
/// and also binds the object.
///
/// If the optional `f` argument is passed in, it will be used as the method.
/// This supports cases like `super.foo` where we need to tear off the method
/// from the superclass, not from the `obj` directly.
// TODO(leafp): Consider caching the tearoff on the object?
bind(obj, name, method) {
if (obj == null) obj = jsNull;
if (method == null) method = JS('', '#[#]', obj, name);
var f = JS('', '#.bind(#)', method, obj);
// TODO(jmesserly): canonicalize tearoffs.
JS('', '#._boundObject = #', f, obj);
JS('', '#._boundMethod = #', f, method);
JS('', '#[#] = #', f, _runtimeType, getMethodType(getType(obj), name));
return f;
}
/// Binds the `call` method of an interface type, handling null.
///
/// Essentially this works like `obj?.call`. It also handles the needs of
/// [dsend]/[dcall], returning `null` if no method was found with the given
/// canonical member [name].
///
/// [name] is typically `"call"` but it could be the [extensionSymbol] for
/// `call`, if we define it on a native type, and [obj] is known statially to be
/// a native type/interface with `call`.
bindCall(obj, name) {
if (obj == null) return null;
var ftype = getMethodType(getType(obj), name);
if (ftype == null) return null;
var method = JS('', '#[#]', obj, name);
var f = JS('', '#.bind(#)', method, obj);
// TODO(jmesserly): canonicalize tearoffs.
JS('', '#._boundObject = #', f, obj);
JS('', '#._boundMethod = #', f, method);
JS('', '#[#] = #', f, _runtimeType, ftype);
return f;
}
/// Instantiate a generic method.
///
/// We need to apply the type arguments both to the function, as well as its
/// associated function type.
gbind(f, @rest List<Object> typeArgs) {
GenericFunctionType type = JS('!', '#[#]', f, _runtimeType);
type.checkBounds(typeArgs);
// Create a JS wrapper function that will also pass the type arguments.
var result =
JS('', '(...args) => #.apply(null, #.concat(args))', f, typeArgs);
// Tag the wrapper with the original function to be used for equality checks.
JS('', '#["_originalFn"] = #', result, f);
JS('', '#["_typeArgs"] = #', result, constList(typeArgs, Object));
// Tag the wrapper with the instantiated function type.
return fn(result, type.instantiate(typeArgs));
}
dloadRepl(obj, field) => dload(obj, replNameLookup(obj, field));
// Warning: dload, dput, and dsend assume they are never called on methods
// implemented by the Object base class as those methods can always be
// statically resolved.
dload(obj, field) {
if (JS('!', 'typeof # == "function" && # == "call"', obj, field)) {
return obj;
}
var f = _canonicalMember(obj, field);
trackCall(obj);
if (f != null) {
var type = getType(obj);
if (hasField(type, f) || hasGetter(type, f)) return JS('', '#[#]', obj, f);
if (hasMethod(type, f)) return bind(obj, f, null);
// Always allow for JS interop objects.
if (isJsInterop(obj)) return JS('', '#[#]', obj, f);
}
return noSuchMethod(obj, InvocationImpl(field, JS('', '[]'), isGetter: true));
}
_stripGenericArguments(type) {
var genericClass = getGenericClass(type);
if (genericClass != null) return JS('', '#()', genericClass);
return type;
}
dputRepl(obj, field, value) => dput(obj, replNameLookup(obj, field), value);
dput(obj, field, value) {
var f = _canonicalMember(obj, field);
trackCall(obj);
if (f != null) {
var setterType = getSetterType(getType(obj), f);
if (setterType != null) {
return JS('', '#[#] = #.as(#)', obj, f, setterType, value);
}
// Always allow for JS interop objects.
if (isJsInterop(obj)) return JS('', '#[#] = #', obj, f, value);
}
noSuchMethod(
obj, InvocationImpl(field, JS('', '[#]', value), isSetter: true));
return value;
}
/// Returns an error message if function of a given [type] can't be applied to
/// [actuals] and [namedActuals].
///
/// Returns `null` if all checks pass.
String? _argumentErrors(FunctionType type, List actuals, namedActuals) {
// Check for too few required arguments.
int actualsCount = JS('!', '#.length', actuals);
var required = type.args;
int requiredCount = JS('!', '#.length', required);
if (actualsCount < requiredCount) {
return 'Dynamic call with too few arguments. '
'Expected: $requiredCount Actual: $actualsCount';
}
// Check for too many postional arguments.
var extras = actualsCount - requiredCount;
var optionals = type.optionals;
if (extras > JS<int>('!', '#.length', optionals)) {
return 'Dynamic call with too many arguments. '
'Expected: $requiredCount Actual: $actualsCount';
}
// Check if we have invalid named arguments.
Iterable? names;
var named = type.named;
var requiredNamed = type.requiredNamed;
if (namedActuals != null) {
names = getOwnPropertyNames(namedActuals);
for (var name in names) {
if (!JS<bool>('!', '(#.hasOwnProperty(#) || #.hasOwnProperty(#))', named,
name, requiredNamed, name)) {
return "Dynamic call with unexpected named argument '$name'.";
}
}
}
// Verify that all required named parameters are provided an argument.
Iterable requiredNames = getOwnPropertyNames(requiredNamed);
if (requiredNames.isNotEmpty) {
var missingRequired = namedActuals == null
? requiredNames
: requiredNames.where((name) =>
!JS<bool>('!', '#.hasOwnProperty(#)', namedActuals, name));
if (missingRequired.isNotEmpty) {
var error = "Dynamic call with missing required named arguments: "
"${missingRequired.join(', ')}.";
if (!compileTimeFlag('soundNullSafety')) {
_nullWarn(error);
} else {
return error;
}
}
}
// Now that we know the signature matches, we can perform type checks.
for (var i = 0; i < requiredCount; ++i) {
JS('', '#[#].as(#[#])', required, i, actuals, i);
}
for (var i = 0; i < extras; ++i) {
JS('', '#[#].as(#[#])', optionals, i, actuals, i + requiredCount);
}
if (names != null) {
for (var name in names) {
JS('', '(#[#] || #[#]).as(#[#])', named, name, requiredNamed, name,
namedActuals, name);
}
}
return null;
}
_toSymbolName(symbol) => JS('', '''(() => {
let str = $symbol.toString();
// Strip leading 'Symbol(' and trailing ')'
return str.substring(7, str.length-1);
})()''');
_toDisplayName(name) => JS('', '''(() => {
// Names starting with _ are escaped names used to disambiguate Dart and
// JS names.
if ($name[0] === '_') {
// Inverse of
switch($name) {
case '_get':
return '[]';
case '_set':
return '[]=';
case '_negate':
return 'unary-';
case '_constructor':
case '_prototype':
return $name.substring(1);
}
}
return $name;
})()''');
Symbol _dartSymbol(name) {
return (JS<bool>('!', 'typeof # === "symbol"', name))
? JS('Symbol', '#(new #.new(#, #))', const_, PrivateSymbol,
_toSymbolName(name), name)
: JS('Symbol', '#(new #.new(#))', const_, internal.Symbol,
_toDisplayName(name));
}
Symbol _setterSymbol(name) {
return (JS<bool>('!', 'typeof # === "symbol"', name))
? JS('Symbol', '#(new #.new(# + "=", #))', const_, PrivateSymbol,
_toSymbolName(name), name)
: JS('Symbol', '#(new #.new(# + "="))', const_, internal.Symbol,
_toDisplayName(name));
}
/// Checks for a valid function, receiver and arguments before calling [f].
///
/// If passed, [args] and [typeArgs] must be native JavaScript arrays.
///
/// NOTE: The contents of [args] may be modified before calling [f]. If it
/// originated outside of the SDK it must be copied first.
_checkAndCall(f, ftype, obj, typeArgs, args, named, displayName) =>
JS('', '''(() => {
$trackCall($obj);
let originalTarget = obj === void 0 ? f : obj;
function callNSM(errorMessage) {
return $noSuchMethod(originalTarget, new $InvocationImpl.new(
$displayName, $args, {
namedArguments: $named,
// Repeated the default value here to avoid passing null from JS to a
// non-nullable argument.
typeArguments: $typeArgs || [],
isMethod: true,
failureMessage: errorMessage
}));
}
if ($f == null) return callNSM('Dynamic call of null.');
if (!($f instanceof Function)) {
// We're not a function (and hence not a method either)
// Grab the `call` method if it's not a function.
if ($f != null) {
// Getting the member succeeded, so update the originalTarget.
// (we're now trying `call()` on `f`, so we want to call its nSM rather
// than the original target's nSM).
originalTarget = f;
$f = ${bindCall(f, _canonicalMember(f, 'call'))};
$ftype = null;
$displayName = "call";
}
if ($f == null) return callNSM(
"Dynamic call of object has no instance method 'call'.");
}
// If f is a function, but not a method (no method type)
// then it should have been a function valued field, so
// get the type from the function.
if ($ftype == null) $ftype = $f[$_runtimeType];
if ($ftype == null) {
// TODO(leafp): Allow JS objects to go through?
if ($typeArgs != null) {
// TODO(jmesserly): is there a sensible way to handle these?
$throwTypeError('call to JS object `' + $obj +
'` with type arguments <' + $typeArgs + '> is not supported.');
}
if ($named != null) $args.push($named);
return $f.apply($obj, $args);
}
// Apply type arguments
if (${_jsInstanceOf(ftype, GenericFunctionType)}) {
let formalCount = $ftype.formalCount;
if ($typeArgs == null) {
$typeArgs = $ftype.instantiateDefaultBounds();
} else if ($typeArgs.length != formalCount) {
return callNSM('Dynamic call with incorrect number of type arguments. ' +
'Expected: ' + formalCount + ' Actual: ' + $typeArgs.length);
} else {
$ftype.checkBounds($typeArgs);
}
$ftype = $ftype.instantiate($typeArgs);
} else if ($typeArgs != null) {
return callNSM('Dynamic call with unexpected type arguments. ' +
'Expected: 0 Actual: ' + $typeArgs.length);
}
let errorMessage = $_argumentErrors($ftype, $args, $named);
if (errorMessage == null) {
if ($typeArgs != null) $args = $typeArgs.concat($args);
if ($named != null) $args.push($named);
return $f.apply($obj, $args);
}
return callNSM(errorMessage);
})()''');
dcall(f, args, [@undefined named]) => _checkAndCall(
f, null, JS('', 'void 0'), null, args, named, JS('', 'f.name'));
dgcall(f, typeArgs, args, [@undefined named]) => _checkAndCall(f, null,
JS('', 'void 0'), typeArgs, args, named, JS('', "f.name || 'call'"));
/// Helper for REPL dynamic invocation variants that make a best effort to
/// enable accessing private members across library boundaries.
replNameLookup(object, field) => JS('', '''(() => {
let rawField = $field;
if (typeof(field) == 'symbol') {
// test if the specified field exists in which case it is safe to use it.
if ($field in $object) return $field;
// Symbol is from a different library. Make a best effort to
$field = $field.toString();
$field = $field.substring('Symbol('.length, field.length - 1);
} else if ($field.charAt(0) != '_') {
// Not a private member so default call path is safe.
return $field;
}
// If the exact field name is present, invoke callback with it.
if ($field in $object) return $field;
// TODO(jacobr): warn if there are multiple private members with the same
// name which could happen if super classes in different libraries have
// the same private member name.
let proto = $object;
while (proto !== null) {
// Private field (indicated with "_").
let symbols = Object.getOwnPropertySymbols(proto);
let target = 'Symbol(' + $field + ')';
for (let s = 0; s < symbols.length; s++) {
let sym = symbols[s];
if (target == sym.toString()) return sym;
}
proto = proto.__proto__;
}
// We didn't find a plausible alternate private symbol so just fall back
// to the regular field.
return rawField;
})()''');
/// Shared code for dsend, dindex, and dsetindex.
callMethod(obj, name, typeArgs, args, named, displayName) {
if (JS('!', 'typeof # == "function" && # == "call"', obj, name)) {
return dgcall(obj, typeArgs, args, named);
}
var symbol = _canonicalMember(obj, name);
if (symbol == null) {
return noSuchMethod(obj, InvocationImpl(displayName, args, isMethod: true));
}
var f = obj != null ? JS('', '#[#]', obj, symbol) : null;
var type = getType(obj);
var ftype = getMethodType(type, symbol);
// No such method if dart object and ftype is missing.
return _checkAndCall(f, ftype, obj, typeArgs, args, named, displayName);
}
dsend(obj, method, args, [@undefined named]) =>
callMethod(obj, method, null, args, named, method);
dgsend(obj, typeArgs, method, args, [@undefined named]) =>
callMethod(obj, method, typeArgs, args, named, method);
dsendRepl(obj, method, args, [@undefined named]) =>
callMethod(obj, replNameLookup(obj, method), null, args, named, method);
dgsendRepl(obj, typeArgs, method, args, [@undefined named]) =>
callMethod(obj, replNameLookup(obj, method), typeArgs, args, named, method);
dindex(obj, index) => callMethod(obj, '_get', null, [index], null, '[]');
dsetindex(obj, index, value) =>
callMethod(obj, '_set', null, [index, value], null, '[]=');
/// General implementation of the Dart `is` operator.
///
/// Some basic cases are handled directly by the `.is` methods that are attached
/// directly on types, but any query that requires checking subtyping relations
/// is handled here.
@notNull
@JSExportName('is')
bool instanceOf(obj, type) {
if (obj == null) {
return _equalType(type, Null) ||
_isTop(type) ||
_jsInstanceOf(type, NullableType);
}
return isSubtypeOf(getReifiedType(obj), type);
}
/// General implementation of the Dart `as` operator.
///
/// Some basic cases are handled directly by the `.as` methods that are attached
/// directly on types, but any query that requires checking subtyping relations
/// is handled here.
@JSExportName('as')
cast(obj, type) {
// We hoist the common case where null is checked against another type here
// for better performance.
if (obj == null && !compileTimeFlag('soundNullSafety')) {
// Check the null comparison cache to avoid emitting repeated warnings.
_nullWarnOnType(type);
return obj;
} else {
var actual = getReifiedType(obj);
if (isSubtypeOf(actual, type)) return obj;
}
return castError(obj, type);
}
bool test(bool? obj) {
if (obj == null) throw BooleanConversionAssertionError();
return obj;
}
bool dtest(obj) {
// Only throw an AssertionError in weak mode for compatibility. Strong mode
// should throw a TypeError.
if (obj is! bool)
booleanConversionFailed(
compileTimeFlag('soundNullSafety') ? obj : test(obj));
return obj;
}
Never booleanConversionFailed(obj) {
var actual = typeName(getReifiedType(obj));
throw TypeErrorImpl("type '$actual' is not a 'bool' in boolean expression");
}
asInt(obj) {
// Note: null (and undefined) will fail this test.
if (JS('!', 'Math.floor(#) != #', obj, obj)) {
if (obj == null && !compileTimeFlag('soundNullSafety')) {
_nullWarnOnType(JS('', '#', int));
return null;
} else {
castError(obj, JS('', '#', int));
}
}
return obj;
}
asNullableInt(obj) => obj == null ? null : asInt(obj);
/// Checks for null or undefined and returns [x].
///
/// Throws [NoSuchMethodError] when it is null or undefined.
//
// TODO(jmesserly): inline this, either by generating it as a function into
// the module, or via some other pattern such as:
//
// <expr> || nullErr()
// (t0 = <expr>) != null ? t0 : nullErr()
@JSExportName('notNull')
_notNull(x) {
if (x == null) throwNullValueError();
return x;
}
/// Checks for null or undefined and returns [x].
///
/// Throws a [TypeError] when [x] is null or undefined (under sound null safety
/// mode) or emits a runtime warning (otherwise).
///
/// This is only used by the compiler when casting from nullable to non-nullable
/// variants of the same type.
nullCast(x, type) {
if (x == null) {
if (!compileTimeFlag('soundNullSafety')) {
_nullWarnOnType(type);
} else {
castError(x, type);
}
}
return x;
}
/// Checks for null or undefined and returns [x].
///
/// Throws a [TypeError] when [x] is null or undefined.
///
/// This is only used by the compiler for the runtime null check operator `!`.
nullCheck(x) {
if (x == null) throw TypeErrorImpl("Unexpected null value.");
return x;
}
/// The global constant map table.
final constantMaps = JS<Object>('!', 'new Map()');
// TODO(leafp): This table gets quite large in apps.
// Keeping the paths is probably expensive. It would probably
// be more space efficient to just use a direct hash table with
// an appropriately defined structural equality function.
Object _lookupNonTerminal(Object map, Object? key) {
var result = JS('', '#.get(#)', map, key);
if (result != null) return result;
JS('', '#.set(#, # = new Map())', map, key, result);
return result!;
}
Map<K, V> constMap<K, V>(JSArray elements) {
var count = elements.length;
var map = _lookupNonTerminal(constantMaps, count);
for (var i = 0; i < count; i++) {
map = _lookupNonTerminal(map, JS('', '#[#]', elements, i));
}
map = _lookupNonTerminal(map, K);
Map<K, V>? result = JS('', '#.get(#)', map, V);
if (result != null) return result;
result = ImmutableMap<K, V>.from(elements);
JS('', '#.set(#, #)', map, V, result);
return result;
}
final constantSets = JS<Object>('!', 'new Map()');
var _immutableSetConstructor;
// We cannot invoke private class constructors directly in Dart.
Set<E> _createImmutableSet<E>(JSArray<E> elements) {
_immutableSetConstructor ??=
JS('', '#.#', getLibrary('dart:collection'), '_ImmutableSet\$');
return JS('', 'new (#(#)).from(#)', _immutableSetConstructor, E, elements);
}
Set<E> constSet<E>(JSArray<E> elements) {
var count = elements.length;
var map = _lookupNonTerminal(constantSets, count);
for (var i = 0; i < count; i++) {
map = _lookupNonTerminal(map, JS('', '#[#]', elements, i));
}
Set<E>? result = JS('', '#.get(#)', map, E);
if (result != null) return result;
result = _createImmutableSet<E>(elements);
JS('', '#.set(#, #)', map, E, result);
return result;
}
final _value = JS('', 'Symbol("_value")');
///
/// Looks up a sequence of [keys] in [map], recursively, and
/// returns the result. If the value is not found, [valueFn] will be called to
/// add it. For example:
///
/// let map = new Map();
/// putIfAbsent(map, [1, 2, 'hi ', 'there '], () => 'world');
///
/// ... will create a Map with a structure like:
///
/// { 1: { 2: { 'hi ': { 'there ': 'world' } } } }
///
multiKeyPutIfAbsent(map, keys, valueFn) => JS('', '''(() => {
for (let k of $keys) {
let value = $map.get(k);
if (!value) {
// TODO(jmesserly): most of these maps are very small (e.g. 1 item),
// so it may be worth optimizing for that.
$map.set(k, value = new Map());
}
$map = value;
}
if ($map.has($_value)) return $map.get($_value);
let value = $valueFn();
$map.set($_value, value);
return value;
})()''');
/// The global constant table.
/// This maps the number of names in the object (n)
/// to a path of length 2*n of maps indexed by the name and
/// and value of the field. The final map is
/// indexed by runtime type, and contains the canonical
/// version of the object.
final constants = JS('!', 'new Map()');
///
/// Canonicalize a constant object.
///
/// Preconditions:
/// - `obj` is an objects or array, not a primitive.
/// - nested values of the object are themselves already canonicalized.
///
@JSExportName('const')
const_(obj) => JS('', '''(() => {
let names = $getOwnNamesAndSymbols($obj);
let count = names.length;
// Index by count. All of the paths through this map
// will have 2*count length.
let map = $_lookupNonTerminal($constants, count);
// TODO(jmesserly): there's no guarantee in JS that names/symbols are
// returned in the same order.
//
// We could probably get the same order if we're judicious about
// initializing fields in a consistent order across all const constructors.
// Alternatively we need a way to sort them to make consistent.
//
// Right now we use the (name,value) pairs in sequence, which prevents
// an object with incorrect field values being returned, but won't
// canonicalize correctly if key order is different.
//
// See issue https://github.com/dart-lang/sdk/issues/30876
for (let i = 0; i < count; i++) {
let name = names[i];
map = $_lookupNonTerminal(map, name);
map = $_lookupNonTerminal(map, $obj[name]);
}
// TODO(leafp): It may be the case that the reified type
// is always one of the keys already used above?
let type = $getReifiedType($obj);
let value = map.get(type);
if (value) return value;
map.set(type, $obj);
return $obj;
})()''');
/// The global constant list table.
/// This maps the number of elements in the list (n)
/// to a path of length n of maps indexed by the value
/// of the field. The final map is indexed by the element
/// type and contains the canonical version of the list.
final constantLists = JS('', 'new Map()');
/// Canonicalize a constant list
constList(elements, elementType) => JS('', '''(() => {
let count = $elements.length;
let map = $_lookupNonTerminal($constantLists, count);
for (let i = 0; i < count; i++) {
map = $_lookupNonTerminal(map, elements[i]);
}
let value = map.get($elementType);
if (value) return value;
${getGenericClassStatic<JSArray>()}($elementType).unmodifiable($elements);
map.set($elementType, elements);
return elements;
})()''');
constFn(x) => JS('', '() => x');
/// Gets the extension symbol given a member [name].
///
/// This is inlined by the compiler when used with a literal string.
extensionSymbol(String name) => JS('', 'dartx[#]', name);
// The following are helpers for Object methods when the receiver
// may be null. These should only be generated by the compiler.
bool equals(x, y) {
// We handle `y == null` inside our generated operator methods, to keep this
// function minimal.
// This pattern resulted from performance testing; it found that dispatching
// was the fastest solution, even for primitive types.
return JS('!', '# == null ? # == null : #[#](#)', x, y, x,
extensionSymbol('_equals'), y);
}
int hashCode(obj) {
return obj == null ? 0 : JS('!', '#[#]', obj, extensionSymbol('hashCode'));
}
@JSExportName('toString')
String _toString(obj) {
if (obj == null) return "null";
if (obj is String) return obj;
return JS('!', '#[#]()', obj, extensionSymbol('toString'));
}
/// Converts to a non-null [String], equivalent to
/// `dart.notNull(dart.toString(obj))`.
///
/// This is commonly used in string interpolation.
@notNull
String str(obj) {
if (obj == null) return "null";
if (obj is String) return obj;
final result = JS('', '#[#]()', obj, extensionSymbol('toString'));
// TODO(40614): Declare `result` as String once non-nullability is sound.
if (result is String) return result;
// Since Dart 2.0, `null` is the only other option.
throw ArgumentError.value(obj, 'object', "toString method returned 'null'");
}
// TODO(jmesserly): is the argument type verified statically?
noSuchMethod(obj, Invocation invocation) {
if (obj == null) defaultNoSuchMethod(obj, invocation);
return JS('', '#[#](#)', obj, extensionSymbol('noSuchMethod'), invocation);
}
/// The default implementation of `noSuchMethod` to match `Object.noSuchMethod`.
defaultNoSuchMethod(obj, Invocation i) {
throw NoSuchMethodError.withInvocation(obj, i);
}
runtimeType(obj) {
return obj == null ? Null : JS('', '#[dartx.runtimeType]', obj);
}
final identityHashCode_ = JS<Object>('!', 'Symbol("_identityHashCode")');
/// Adapts a Dart `get iterator` into a JS `[Symbol.iterator]`.
// TODO(jmesserly): instead of an adaptor, we could compile Dart iterators
// natively implementing the JS iterator protocol. This would allow us to
// optimize them a bit.
final JsIterator = JS('', '''
class JsIterator {
constructor(dartIterator) {
this.dartIterator = dartIterator;
}
next() {
let i = this.dartIterator;
let done = !i.moveNext();
return { done: done, value: done ? void 0 : i.current };
}
}
''');
_canonicalMember(obj, name) {
// Private names are symbols and are already canonical.
if (JS('!', 'typeof # === "symbol"', name)) return name;
if (obj != null && JS<bool>('!', '#[#] != null', obj, _extensionType)) {
return JS('', 'dartx.#', name);
}
// Check for certain names that we can't use in JS
if (JS('!', '# == "constructor" || # == "prototype"', name, name)) {
JS('', '# = "+" + #', name, name);
}
return name;
}
/// A map from libraries to a set of import prefixes that have been loaded.
///
/// Used to validate deferred library conventions.
final deferredImports = JS<Object>('!', 'new Map()');
/// Emulates the implicit "loadLibrary" function provided by a deferred library.
///
/// Libraries are not actually deferred in DDC, so this just records the import
/// for runtime validation, then returns a future that completes immediately.
Future loadLibrary(
@notNull String enclosingLibrary, @notNull String importPrefix) {
var result = JS('', '#.get(#)', deferredImports, enclosingLibrary);
if (JS<bool>('', '# === void 0', result)) {
JS('', '#.set(#, # = new Set())', deferredImports, enclosingLibrary,
result);
}
JS('', '#.add(#)', result, importPrefix);
return Future.value();
}
void checkDeferredIsLoaded(
@notNull String enclosingLibrary, @notNull String importPrefix) {
var loaded = JS('', '#.get(#)', deferredImports, enclosingLibrary);
if (JS<bool>('', '# === void 0', loaded) ||
JS<bool>('', '!#.has(#)', loaded, importPrefix)) {
throwDeferredIsLoadedError(enclosingLibrary, importPrefix);
}
}
/// Defines lazy statics.
///
/// TODO: Remove useOldSemantics when non-null-safe late static field behavior is
/// deprecated.
void defineLazy(to, from, bool useOldSemantics) {
for (var name in getOwnNamesAndSymbols(from)) {
if (useOldSemantics) {
defineLazyFieldOld(to, name, getOwnPropertyDescriptor(from, name));
} else {
defineLazyField(to, name, getOwnPropertyDescriptor(from, name));
}
}
}
/// Defines a lazy static field.
/// After initial get or set, it will replace itself with a value property.
// TODO(jmesserly): reusing descriptor objects has been shown to improve
// performance in other projects (e.g. webcomponents.js ShadowDOM polyfill).
defineLazyField(to, name, desc) => JS('', '''(() => {
const initializer = $desc.get;
const final = $desc.set == null;
// Tracks if the initializer has been called.
let initialized = false;
let init = initializer;
let value = null;
// Tracks if these local variables have been saved so they can be restored
// after a hot restart.
let savedLocals = false;
$desc.get = function() {
if (init == null) return value;
if (final && initialized) $throwLateInitializationError($name);
if (!savedLocals) {
// Record the field on first execution so we can reset it later if
// needed (hot restart).
$_resetFields.push(() => {
init = initializer;
value = null;
savedLocals = false;
initialized = false;
});
savedLocals = true;
}
// Must set before calling init in case it is recursive.
initialized = true;
try {
value = init();
} catch (e) {
// Reset to false so the initializer can be executed again if the
// exception was caught.
initialized = false;
throw e;
}
init = null;
return value;
};
$desc.configurable = true;
if ($desc.set != null) {
$desc.set = function(x) {
init = null;
value = x;
// savedLocals and initialized are dead since init is set to null
};
}
return ${defineProperty(to, name, desc)};
})()''');
/// Defines a lazy static field with pre-null-safety semantics.
defineLazyFieldOld(to, name, desc) => JS('', '''(() => {
const initializer = $desc.get;
let init = initializer;
let value = null;
$desc.get = function() {
if (init == null) return value;
let f = init;
init = $throwCyclicInitializationError;
if (f === init) f($name); // throw cycle error
// On the first (non-cyclic) execution, record the field so we can reset it
// later if needed (hot restart).
$_resetFields.push(() => {
init = initializer;
value = null;
});
// Try to evaluate the field, using try+catch to ensure we implement the
// correct Dart error semantics.
try {
value = f();
init = null;
return value;
} catch (e) {
init = null;
value = null;
throw e;
}
};
$desc.configurable = true;
if ($desc.set != null) {
$desc.set = function(x) {
init = null;
value = x;
};
}
return ${defineProperty(to, name, desc)};
})()''');
checkNativeNonNull(dynamic variable) {
if (_nativeNonNullAsserts && variable == null) {
// TODO(srujzs): Add link/patch for instructions to disable in internal
// build systems.
throw TypeErrorImpl('''
Unexpected null value encountered in Dart web platform libraries.
This may be a bug in the Dart SDK APIs. If you would like to report a bug
or disable this error, you can use the following instructions:
https://github.com/dart-lang/sdk/tree/master/sdk/lib/html/doc/NATIVE_NULL_ASSERTIONS.md
''');
}
return variable;
}