diff --git a/pkg/compiler/lib/src/cps_ir/cps_ir_builder.dart b/pkg/compiler/lib/src/cps_ir/cps_ir_builder.dart index c491237d77c..8be9b21676f 100644 --- a/pkg/compiler/lib/src/cps_ir/cps_ir_builder.dart +++ b/pkg/compiler/lib/src/cps_ir/cps_ir_builder.dart @@ -68,24 +68,25 @@ class Environment { void extend(Local element, ir.Primitive value) { // Assert that the name is not already in the environment. `null` is used - // as the name of anonymous variables. Because the variable2index map is - // shared, `null` can already occur. This is safe because such variables - // are not looked up by name. - // - // TODO(kmillikin): This is still kind of fishy. Refactor to not share - // name maps or else garbage collect unneeded names. - assert(element == null || !variable2index.containsKey(element)); - variable2index[element] = index2variable.length; + // as the name of anonymous variables. + assert(!variable2index.containsKey(element)); + if (element != null) variable2index[element] = index2variable.length; index2variable.add(element); index2value.add(value); } - void discard(int count) { + /// Drop [count] values from the environment. + /// + /// Return the previous last value in the environment for convenience. + ir.Primitive discard(int count) { + assert(count > 0); assert(count <= index2variable.length); + ir.Primitive value = index2value.last; // The map from variables to their index are shared, so we cannot remove // the mapping in `variable2index`. index2variable.length -= count; index2value.length -= count; + return value; } ir.Primitive lookup(Local element) { @@ -108,10 +109,12 @@ class Environment { Local variable = index2variable[i]; if (variable != other.index2variable[i]) return false; - // The variable maps to the same index in both environments. - int index = variable2index[variable]; - if (index == null || index != other.variable2index[variable]) { - return false; + // A named variable maps to the same index in both environments. + if (variable != null) { + int index = variable2index[variable]; + if (index == null || index != other.variable2index[variable]) { + return false; + } } } return true; @@ -131,7 +134,15 @@ abstract class JumpCollector { final List> _boxedTryVariables = >[]; - JumpCollector(this._continuationEnvironment, this.target); + /// Construct a collector for a given environment and optionally a target. + /// + /// The environment is the one in effect at the point where the jump's + /// continuation will be bound. Continuations can take an extra argument + /// (see [addJump]). + JumpCollector(this._continuationEnvironment, this.target, + bool hasExtraArgument) { + if (hasExtraArgument) _continuationEnvironment.extend(null, null); + } /// True if the collector has not recorded any jumps to its continuation. bool get isEmpty; @@ -144,7 +155,12 @@ abstract class JumpCollector { Environment get environment; /// Emit a jump to the continuation for a given [IrBuilder]. - void addJump(IrBuilder builder); + /// + /// Jumps can take a single extra argument. This is used to pass return + /// values to finally blocks for returns inside try/finally and to pass + /// values of expressions that have internal control flow to their join-point + /// continuations. + void addJump(IrBuilder builder, [ir.Primitive value]); /// Add a set of variables that were boxed on entry to a try block. /// @@ -206,8 +222,9 @@ class ForwardJumpCollector extends JumpCollector { /// continuation represented by this collector will be bound. The /// environment is copied by the collector. Subsequent mutation of the /// original environment will not affect the collector. - ForwardJumpCollector(Environment environment, {JumpTarget target: null}) - : super(new Environment.from(environment), target); + ForwardJumpCollector(Environment environment, + {JumpTarget target, bool hasExtraArgument: false}) + : super(new Environment.from(environment), target, hasExtraArgument); bool get isEmpty => _invocations.isEmpty; @@ -221,12 +238,20 @@ class ForwardJumpCollector extends JumpCollector { return _continuationEnvironment; } - void addJump(IrBuilder builder) { + void addJump(IrBuilder builder, [ir.Primitive value]) { assert(_continuation == null); _buildTryExit(builder); ir.InvokeContinuation invoke = new ir.InvokeContinuation.uninitialized(); builder.add(invoke); _invocations.add(invoke); + // Truncate the environment at the invocation site so it only includes + // values that will be continuation arguments. If an extra value is passed + // it will already be included in the continuation environment, but it is + // not present in the invocation environment. + int delta = builder.environment.length - _continuationEnvironment.length; + if (value != null) ++delta; + if (delta > 0) builder.environment.discard(delta); + if (value != null) builder.environment.extend(null, value); _invocationEnvironments.add(builder.environment); builder._current = null; // TODO(kmillikin): Can we set builder.environment to null to make it @@ -308,8 +333,9 @@ class BackwardJumpCollector extends JumpCollector { /// continuation represented by this collector will be bound. The /// translation of the continuation body will use an environment with the /// same shape, but with fresh continuation parameters for each variable. - BackwardJumpCollector(Environment environment, {JumpTarget target: null}) - : super(new Environment.fresh(environment), target) { + BackwardJumpCollector(Environment environment, + {JumpTarget target, bool hasExtraArgument: false}) + : super(new Environment.fresh(environment), target, hasExtraArgument) { List parameters = new List.from(_continuationEnvironment.index2value); _continuation = new ir.Continuation(parameters, isRecursive: true); @@ -320,13 +346,20 @@ class BackwardJumpCollector extends JumpCollector { ir.Continuation get continuation => _continuation; Environment get environment => _continuationEnvironment; - void addJump(IrBuilder builder) { + void addJump(IrBuilder builder, [ir.Primitive value]) { assert(_continuation.parameters.length <= builder.environment.length); isEmpty = false; _buildTryExit(builder); + // Truncate the environment at the invocation site so it only includes + // values that will be continuation arguments. If an extra value is passed + // it will already be included in the continuation environment, but it is + // not present in the invocation environment. + int delta = builder.environment.length - _continuationEnvironment.length; + if (value != null) ++delta; + if (delta > 0) builder.environment.discard(delta); + if (value != null) builder.environment.extend(null, value); builder.add(new ir.InvokeContinuation(_continuation, - builder.environment.index2value.take(_continuation.parameters.length) - .toList(), + builder.environment.index2value, isRecursive: true)); builder._current = null; } @@ -394,14 +427,22 @@ class IrBuilderSharedState { ConstantSystem get constantSystem => constants.constantSystem; /// A stack of collectors for breaks. - final List breakCollectors = []; + List breakCollectors = []; /// A stack of collectors for continues. - final List continueCollectors = []; + List continueCollectors = []; final ExecutableElement currentElement; final ir.Continuation returnContinuation = new ir.Continuation.retrn(); + + /// The target of a return from the function. + /// + /// A null value indicates that the target is the function's return + /// continuation. Otherwise, when inside the try block of try/finally + /// a return is intercepted to give a place to generate the finally code. + JumpCollector returnCollector = null; + ir.Parameter _thisParameter; ir.Parameter enclosingMethodThisParameter; @@ -750,20 +791,10 @@ abstract class IrBuilder { // expressions cannot introduce variable bindings. assert(environment.length == thenBuilder.environment.length); assert(environment.length == elseBuilder.environment.length); - // Extend the join-point environment with a placeholder for the value of - // the expression. Optimistically assume that the value is the value of - // the first subexpression. This value might noe even be in scope at the - // join-point because it's bound in the first subexpression. However, if - // that is the case, it will necessarily differ from the value of the - // other subexpression and cause the introduction of a join-point - // continuation parameter. If the two values do happen to be the same, - // this will avoid inserting a useless continuation parameter. - environment.extend(null, thenValue); - thenBuilder.environment.extend(null, thenValue); - elseBuilder.environment.extend(null, elseValue); - JumpCollector join = new ForwardJumpCollector(environment); - thenBuilder.jumpTo(join); - elseBuilder.jumpTo(join); + JumpCollector join = + new ForwardJumpCollector(environment, hasExtraArgument: true); + thenBuilder.jumpTo(join, thenValue); + elseBuilder.jumpTo(join, elseValue); // Build the term // let cont join(x, ..., result) = [] in @@ -782,10 +813,7 @@ abstract class IrBuilder { thenContinuation, elseContinuation)))); environment = join.environment; - environment.discard(1); - return (thenValue == elseValue) - ? thenValue - : join.continuation.parameters.last; + return environment.discard(1); } /** @@ -1169,8 +1197,8 @@ abstract class IrBuilder { } } - void jumpTo(JumpCollector collector) { - collector.addJump(this); + void jumpTo(JumpCollector collector, [ir.Primitive value]) { + collector.addJump(this, value); } void addRecursiveContinuation(BackwardJumpCollector collector) { @@ -1715,6 +1743,7 @@ abstract class IrBuilder { {TryStatementInfo tryStatementInfo, SubbuildFunction buildTryBlock, List catchClauseInfos: const [], + SubbuildFunction buildFinallyBlock, ClosureClassMap closureClassMap}) { assert(isOpen); @@ -1747,125 +1776,230 @@ abstract class IrBuilder { // scope of the handler. The mutable bindings are dereferenced at the end // of the try block and at the beginning of the catch block, so the // variables are unboxed in the catch block and at the join point. - JumpCollector join = new ForwardJumpCollector(environment); - IrBuilder tryCatchBuilder = makeDelimitedBuilder(); + if (catchClauseInfos.isNotEmpty) { + JumpCollector join = new ForwardJumpCollector(environment); + IrBuilder tryCatchBuilder = makeDelimitedBuilder(); - // Variables treated as mutable in a try are not mutable outside of it. - // Work with a copy of the outer builder's mutable variables. - tryCatchBuilder.mutableVariables = - new Map.from(mutableVariables); - for (LocalVariableElement variable in tryStatementInfo.boxedOnEntry) { - assert(!tryCatchBuilder.isInMutableVariable(variable)); - ir.Primitive value = tryCatchBuilder.buildLocalVariableGet(variable); - tryCatchBuilder.makeMutableVariable(variable); - tryCatchBuilder.declareLocalVariable(variable, initialValue: value); - } - - IrBuilder tryBuilder = tryCatchBuilder.makeDelimitedBuilder(); - - void interceptJumps(JumpCollector collector) { - collector.enterTry(tryStatementInfo.boxedOnEntry); - } - void restoreJumps(JumpCollector collector) { - collector.leaveTry(); - } - tryBuilder.state.breakCollectors.forEach(interceptJumps); - tryBuilder.state.continueCollectors.forEach(interceptJumps); - buildTryBlock(tryBuilder); - if (tryBuilder.isOpen) { - interceptJumps(join); - tryBuilder.jumpTo(join); - restoreJumps(join); - } - tryBuilder.state.breakCollectors.forEach(restoreJumps); - tryBuilder.state.continueCollectors.forEach(restoreJumps); - - IrBuilder catchBuilder = tryCatchBuilder.makeDelimitedBuilder(); - for (LocalVariableElement variable in tryStatementInfo.boxedOnEntry) { - assert(catchBuilder.isInMutableVariable(variable)); - ir.Primitive value = catchBuilder.buildLocalVariableGet(variable); - // After this point, the variables that were boxed on entry to the try - // are no longer treated as mutable. - catchBuilder.removeMutableVariable(variable); - catchBuilder.environment.update(variable, value); - } - - // Handlers are always translated as having both exception and stack trace - // parameters. Multiple clauses do not have to use the same names for - // them. Choose the first of each as the name hint for the respective - // handler parameter. - ir.Parameter exceptionParameter = - new ir.Parameter(catchClauseInfos.first.exceptionVariable); - LocalVariableElement traceVariable; - CatchClauseInfo catchAll; - for (int i = 0; i < catchClauseInfos.length; ++i) { - CatchClauseInfo info = catchClauseInfos[i]; - if (info.type == null) { - catchAll = info; - catchClauseInfos.length = i; - break; + // Variables treated as mutable in a try are not mutable outside of it. + // Work with a copy of the outer builder's mutable variables. + tryCatchBuilder.mutableVariables = + new Map.from(mutableVariables); + for (LocalVariableElement variable in tryStatementInfo.boxedOnEntry) { + assert(!tryCatchBuilder.isInMutableVariable(variable)); + ir.Primitive value = tryCatchBuilder.buildLocalVariableGet(variable); + tryCatchBuilder.makeMutableVariable(variable); + tryCatchBuilder.declareLocalVariable(variable, initialValue: value); } - if (traceVariable == null) { - traceVariable = info.stackTraceVariable; + + IrBuilder tryBuilder = tryCatchBuilder.makeDelimitedBuilder(); + + void interceptJump(JumpCollector collector) { + collector.enterTry(tryStatementInfo.boxedOnEntry); } - } - ir.Parameter traceParameter = new ir.Parameter(traceVariable); - // Expand multiple catch clauses into an explicit if/then/else. Iterate - // them in reverse so the current block becomes the next else block. - ir.Expression catchBody; - if (catchAll == null) { - catchBody = new ir.Rethrow(); + void restoreJump(JumpCollector collector) { + collector.leaveTry(); + } + tryBuilder.state.breakCollectors.forEach(interceptJump); + tryBuilder.state.continueCollectors.forEach(interceptJump); + buildTryBlock(tryBuilder); + if (tryBuilder.isOpen) { + interceptJump(join); + tryBuilder.jumpTo(join); + restoreJump(join); + } + tryBuilder.state.breakCollectors.forEach(restoreJump); + tryBuilder.state.continueCollectors.forEach(restoreJump); + + IrBuilder catchBuilder = tryCatchBuilder.makeDelimitedBuilder(); + for (LocalVariableElement variable in tryStatementInfo.boxedOnEntry) { + assert(catchBuilder.isInMutableVariable(variable)); + ir.Primitive value = catchBuilder.buildLocalVariableGet(variable); + // After this point, the variables that were boxed on entry to the try + // are no longer treated as mutable. + catchBuilder.removeMutableVariable(variable); + catchBuilder.environment.update(variable, value); + } + + // Handlers are always translated as having both exception and stack trace + // parameters. Multiple clauses do not have to use the same names for + // them. Choose the first of each as the name hint for the respective + // handler parameter. + ir.Parameter exceptionParameter = + new ir.Parameter(catchClauseInfos.first.exceptionVariable); + LocalVariableElement traceVariable; + CatchClauseInfo catchAll; + for (int i = 0; i < catchClauseInfos.length; ++i) { + CatchClauseInfo info = catchClauseInfos[i]; + if (info.type == null) { + catchAll = info; + catchClauseInfos.length = i; + break; + } + if (traceVariable == null) { + traceVariable = info.stackTraceVariable; + } + } + ir.Parameter traceParameter = new ir.Parameter(traceVariable); + // Expand multiple catch clauses into an explicit if/then/else. Iterate + // them in reverse so the current block becomes the next else block. + ir.Expression catchBody; + if (catchAll == null) { + catchBody = new ir.Rethrow(); + } else { + IrBuilder clauseBuilder = catchBuilder.makeDelimitedBuilder(); + clauseBuilder.declareLocalVariable(catchAll.exceptionVariable, + initialValue: exceptionParameter); + if (catchAll.stackTraceVariable != null) { + clauseBuilder.declareLocalVariable(catchAll.stackTraceVariable, + initialValue: traceParameter); + } + catchAll.buildCatchBlock(clauseBuilder); + if (clauseBuilder.isOpen) clauseBuilder.jumpTo(join); + catchBody = clauseBuilder._root; + } + for (CatchClauseInfo clause in catchClauseInfos.reversed) { + IrBuilder clauseBuilder = catchBuilder.makeDelimitedBuilder(); + clauseBuilder.declareLocalVariable(clause.exceptionVariable, + initialValue: exceptionParameter); + if (clause.stackTraceVariable != null) { + clauseBuilder.declareLocalVariable(clause.stackTraceVariable, + initialValue: traceParameter); + } + clause.buildCatchBlock(clauseBuilder); + if (clauseBuilder.isOpen) clauseBuilder.jumpTo(join); + ir.Continuation thenContinuation = new ir.Continuation([]); + thenContinuation.body = clauseBuilder._root; + ir.Continuation elseContinuation = new ir.Continuation([]); + elseContinuation.body = catchBody; + + // Build the type test guarding this clause. We can share the + // environment with the nested builder because this part cannot mutate + // it. + IrBuilder checkBuilder = catchBuilder.makeDelimitedBuilder(environment); + ir.Primitive typeMatches = + checkBuilder.buildTypeOperator(exceptionParameter, + clause.type, + isTypeTest: true); + checkBuilder.add(new ir.LetCont.many([thenContinuation, + elseContinuation], + new ir.Branch(new ir.IsTrue(typeMatches), + thenContinuation, + elseContinuation))); + catchBody = checkBuilder._root; + } + + List catchParameters = + [exceptionParameter, traceParameter]; + ir.Continuation catchContinuation = new ir.Continuation(catchParameters); + catchBuilder.add(catchBody); + catchContinuation.body = catchBuilder._root; + + tryCatchBuilder.add( + new ir.LetHandler(catchContinuation, tryBuilder._root)); + add(new ir.LetCont(join.continuation, tryCatchBuilder._root)); + environment = join.environment; } else { - IrBuilder clauseBuilder = catchBuilder.makeDelimitedBuilder(); - clauseBuilder.declareLocalVariable(catchAll.exceptionVariable, - initialValue: exceptionParameter); - if (catchAll.stackTraceVariable != null) { - clauseBuilder.declareLocalVariable(catchAll.stackTraceVariable, - initialValue: traceParameter); + // Try/finally. + JumpCollector join = new ForwardJumpCollector(environment); + IrBuilder tryFinallyBuilder = makeDelimitedBuilder(); + + tryFinallyBuilder.mutableVariables = + new Map.from(mutableVariables); + for (LocalVariableElement variable in tryStatementInfo.boxedOnEntry) { + assert(!tryFinallyBuilder.isInMutableVariable(variable)); + ir.Primitive value = tryFinallyBuilder.buildLocalVariableGet(variable); + tryFinallyBuilder.makeMutableVariable(variable); + tryFinallyBuilder.declareLocalVariable(variable, initialValue: value); } - catchAll.buildCatchBlock(clauseBuilder); - if (clauseBuilder.isOpen) clauseBuilder.jumpTo(join); - catchBody = clauseBuilder._root; - } - for (CatchClauseInfo clause in catchClauseInfos.reversed) { - IrBuilder clauseBuilder = catchBuilder.makeDelimitedBuilder(); - clauseBuilder.declareLocalVariable(clause.exceptionVariable, - initialValue: exceptionParameter); - if (clause.stackTraceVariable != null) { - clauseBuilder.declareLocalVariable(clause.stackTraceVariable, - initialValue: traceParameter); + + IrBuilder tryBuilder = tryFinallyBuilder.makeDelimitedBuilder(); + + JumpCollector interceptJump(JumpCollector collector) { + JumpCollector result = + new ForwardJumpCollector(environment, target: collector.target); + result.enterTry(tryStatementInfo.boxedOnEntry); + return result; } - clause.buildCatchBlock(clauseBuilder); - if (clauseBuilder.isOpen) clauseBuilder.jumpTo(join); - ir.Continuation thenContinuation = new ir.Continuation([]); - thenContinuation.body = clauseBuilder._root; - ir.Continuation elseContinuation = new ir.Continuation([]); - elseContinuation.body = catchBody; + void restoreJump(JumpCollector collector) { + collector.leaveTry(); + } + List savedBreaks = tryBuilder.state.breakCollectors; + List savedContinues = tryBuilder.state.continueCollectors; + JumpCollector savedReturn = tryBuilder.state.returnCollector; - // Build the type test guarding this clause. We can share the environment - // with the nested builder because this part cannot mutate it. - IrBuilder checkBuilder = catchBuilder.makeDelimitedBuilder(environment); - ir.Primitive typeMatches = - checkBuilder.buildTypeOperator(exceptionParameter, - clause.type, - isTypeTest: true); - checkBuilder.add(new ir.LetCont.many([thenContinuation, elseContinuation], - new ir.Branch(new ir.IsTrue(typeMatches), - thenContinuation, - elseContinuation))); - catchBody = checkBuilder._root; + List newBreaks = tryBuilder.state.breakCollectors = + savedBreaks.map(interceptJump).toList(); + List newContinues = tryBuilder.state.continueCollectors = + savedContinues.map(interceptJump).toList(); + JumpCollector newReturn = tryBuilder.state.returnCollector = + new ForwardJumpCollector(environment, hasExtraArgument: true); + newReturn.enterTry(tryStatementInfo.boxedOnEntry); + buildTryBlock(tryBuilder); + if (tryBuilder.isOpen) { + // To cover control falling off the end of the try block, the finally + // code is translated at the join point. This ensures that it is + // correctly outside the scope of the catch handler. + join.enterTry(tryStatementInfo.boxedOnEntry); + tryBuilder.jumpTo(join); + join.leaveTry(); + } + newBreaks.forEach(restoreJump); + newContinues.forEach(restoreJump); + newReturn.leaveTry(); + tryBuilder.state.breakCollectors = savedBreaks; + tryBuilder.state.continueCollectors = savedContinues; + tryBuilder.state.returnCollector = savedReturn; + + IrBuilder catchBuilder = tryFinallyBuilder.makeDelimitedBuilder(); + for (LocalVariableElement variable in tryStatementInfo.boxedOnEntry) { + assert(catchBuilder.isInMutableVariable(variable)); + ir.Primitive value = catchBuilder.buildLocalVariableGet(variable); + catchBuilder.removeMutableVariable(variable); + catchBuilder.environment.update(variable, value); + } + + buildFinallyBlock(catchBuilder); + if (catchBuilder.isOpen) { + catchBuilder.add(new ir.Rethrow()); + catchBuilder._current = null; + } + List catchParameters = + [new ir.Parameter(null), new ir.Parameter(null)]; + ir.Continuation catchContinuation = new ir.Continuation(catchParameters); + catchContinuation.body = catchBuilder._root; + tryFinallyBuilder.add( + new ir.LetHandler(catchContinuation, tryBuilder._root)); + + // Build a list of continuations for jumps from the try block and + // duplicate the finally code before jumping to the actual target. + List exits = [join.continuation]; + void addJump(JumpCollector newCollector, + JumpCollector originalCollector) { + if (newCollector.isEmpty) return; + IrBuilder builder = makeDelimitedBuilder(newCollector.environment); + buildFinallyBlock(builder); + if (builder.isOpen) builder.jumpTo(originalCollector); + newCollector.continuation.body = builder._root; + exits.add(newCollector.continuation); + } + for (int i = 0; i < newBreaks.length; ++i) { + addJump(newBreaks[i], savedBreaks[i]); + } + for (int i = 0; i < newContinues.length; ++i) { + addJump(newContinues[i], savedContinues[i]); + } + if (!newReturn.isEmpty) { + IrBuilder builder = makeDelimitedBuilder(newReturn.environment); + ir.Primitive value = builder.environment.discard(1); + buildFinallyBlock(builder); + if (builder.isOpen) builder.buildReturn(value); + newReturn.continuation.body = builder._root; + exits.add(newReturn.continuation); + } + add(new ir.LetCont.many(exits, tryFinallyBuilder._root)); + environment = join.environment; + buildFinallyBlock(this); } - - List catchParameters = - [exceptionParameter, traceParameter]; - ir.Continuation catchContinuation = new ir.Continuation(catchParameters); - catchBuilder.add(catchBody); - catchContinuation.body = catchBuilder._root; - - tryCatchBuilder.add( - new ir.LetHandler(catchContinuation, tryBuilder._root)); - add(new ir.LetCont(join.continuation, tryCatchBuilder._root)); - environment = join.environment; } /// Create a return statement `return value;` or `return;` if [value] is @@ -1879,8 +2013,15 @@ abstract class IrBuilder { if (value == null) { value = buildNullConstant(); } - add(new ir.InvokeContinuation(state.returnContinuation, [value])); - _current = null; + if (state.returnCollector == null) { + add(new ir.InvokeContinuation(state.returnContinuation, [value])); + _current = null; + } else { + // Inside the try block of try/finally, all returns go to a join-point + // continuation that contains the finally code. The return value is + // passed as an extra argument. + jumpTo(state.returnCollector, value); + } } /// Create a blocks of [statements] by applying [build] to all reachable @@ -2037,24 +2178,19 @@ abstract class IrBuilder { ir.Constant rightTrue = rightTrueBuilder.buildBooleanConstant(true); ir.Constant rightFalse = rightFalseBuilder.buildBooleanConstant(false); - // Treat the result values as named values in the environment, so they - // will be treated as arguments to the join-point continuation. + // Result values are passed as continuation arguments, which are + // constructed based on environments. These assertions are a sanity check. assert(environment.length == emptyBuilder.environment.length); assert(environment.length == rightTrueBuilder.environment.length); assert(environment.length == rightFalseBuilder.environment.length); - // Treat the value of the expression as a local variable so it will get - // a continuation parameter. - environment.extend(null, null); - emptyBuilder.environment.extend(null, leftBool); - rightTrueBuilder.environment.extend(null, rightTrue); - rightFalseBuilder.environment.extend(null, rightFalse); // Wire up two continuations for the left subexpression, two continuations // for the right subexpression, and a three-way join continuation. - JumpCollector join = new ForwardJumpCollector(environment); - emptyBuilder.jumpTo(join); - rightTrueBuilder.jumpTo(join); - rightFalseBuilder.jumpTo(join); + JumpCollector join = + new ForwardJumpCollector(environment, hasExtraArgument: true); + emptyBuilder.jumpTo(join, leftBool); + rightTrueBuilder.jumpTo(join, rightTrue); + rightFalseBuilder.jumpTo(join, rightFalse); ir.Continuation leftTrueContinuation = new ir.Continuation([]); ir.Continuation leftFalseContinuation = new ir.Continuation([]); ir.Continuation rightTrueContinuation = new ir.Continuation([]); @@ -2086,10 +2222,7 @@ abstract class IrBuilder { leftTrueContinuation, leftFalseContinuation)))); environment = join.environment; - environment.discard(1); - // There is always a join parameter for the result value, because it - // is different on at least two paths. - return join.continuation.parameters.last; + return environment.discard(1); } ir.Primitive buildIdentical(ir.Primitive x, ir.Primitive y) { @@ -2630,4 +2763,4 @@ class SwitchCaseInfo { SwitchCaseInfo(this.buildBody); void addConstant(ir.Primitive constant) => constants.add(constant); -} \ No newline at end of file +} diff --git a/pkg/compiler/lib/src/cps_ir/cps_ir_builder_task.dart b/pkg/compiler/lib/src/cps_ir/cps_ir_builder_task.dart index b2cd35a6cf3..e6f392a78bf 100644 --- a/pkg/compiler/lib/src/cps_ir/cps_ir_builder_task.dart +++ b/pkg/compiler/lib/src/cps_ir/cps_ir_builder_task.dart @@ -429,9 +429,9 @@ abstract class IrBuilderVisitor extends ast.Visitor } visitTryStatement(ast.TryStatement node) { - // Finally blocks are not yet implemented. - if (node.finallyBlock != null) { - return giveup(node, 'try/finally'); + // Try/catch/finally is not yet implemented. + if (!node.catchBlocks.isEmpty && node.finallyBlock != null) { + return giveup(node, 'try/catch/finally'); } List catchClauseInfos = []; @@ -453,10 +453,13 @@ abstract class IrBuilderVisitor extends ast.Visitor buildCatchBlock: subbuild(catchClause.block))); } + SubbuildFunction buildFinallyBlock = + node.finallyBlock == null ? null : subbuild(node.finallyBlock); irBuilder.buildTry( tryStatementInfo: tryStatements[node], buildTryBlock: subbuild(node.tryBlock), catchClauseInfos: catchClauseInfos, + buildFinallyBlock: buildFinallyBlock, closureClassMap: closureClassMap); } diff --git a/pkg/pkg.status b/pkg/pkg.status index 91ff9571889..e1816481719 100644 --- a/pkg/pkg.status +++ b/pkg/pkg.status @@ -151,48 +151,49 @@ analyzer/test/*: PubGetError [ $compiler == dart2js && $cps_ir ] analysis_server/tool/spec/check_all_test: Crash # Invalid argument(s) -analyzer/test/cancelable_future_test: Crash # (try {test(spec,body);}finally {environment.soloNestingLevel-- ;}): try/finally -analyzer/test/enum_test: Crash # (try {test(spec,body);}finally {environment.soloNestingLevel-- ;}): try/finally -analyzer/test/file_system/memory_file_system_test: Crash # (try {test(spec,body);}finally {environment.soloNestingLevel-- ;}): try/finally -analyzer/test/file_system/physical_resource_provider_test: Crash # (try {test(spec,body);}finally {environment.soloNestingLevel-- ;}): try/finally -analyzer/test/file_system/resource_uri_resolver_test: Crash # (try {test(spec,body);}finally {environment.soloNestingLevel-- ;}): try/finally -analyzer/test/generated/all_the_rest_test: Crash # (try {body();}catch ... try/finally -analyzer/test/generated/ast_test: Crash # (try {test(spec,body);}finally {environment.soloNestingLevel-- ;}): try/finally -analyzer/test/generated/compile_time_error_code_test: Crash # (try {test(spec,body);}finally {environment.soloNestingLevel-- ;}): try/finally -analyzer/test/generated/element_test: Crash # (try {test(spec,body);}finally {environment.soloNestingLevel-- ;}): try/finally -analyzer/test/generated/incremental_resolver_test: Crash # (try {test(spec,body);}finally {environment.soloNestingLevel-- ;}): try/finally -analyzer/test/generated/incremental_scanner_test: Crash # (try {test(spec,body);}finally {environment.soloNestingLevel-- ;}): try/finally -analyzer/test/generated/java_core_test: Crash # (try {body();}catch ... try/finally -analyzer/test/generated/java_io_test: Crash # (try {body();}catch ... try/finally -analyzer/test/generated/non_error_resolver_test: Crash # (try {test(spec,body);}finally {environment.soloNestingLevel-- ;}): try/finally -analyzer/test/generated/parser_test: Crash # (try {test(spec,body);}finally {environment.soloNestingLevel-- ;}): try/finally -analyzer/test/generated/resolver_test: Crash # (try {test(spec,body);}finally {environment.soloNestingLevel-- ;}): try/finally -analyzer/test/generated/scanner_test: Crash # (try {test(spec,body);}finally {environment.soloNestingLevel-- ;}): try/finally -analyzer/test/generated/static_type_warning_code_test: Crash # (try {test(spec,body);}finally {environment.soloNestingLevel-- ;}): try/finally -analyzer/test/generated/static_warning_code_test: Crash # (try {test(spec,body);}finally {environment.soloNestingLevel-- ;}): try/finally -analyzer/test/generated/type_system_test: Crash # (try {test(spec,body);}finally {environment.soloNestingLevel-- ;}): try/finally -analyzer/test/generated/utilities_test: Crash # (try {test(spec,body);}finally {environment.soloNestingLevel-- ;}): try/finally -analyzer/test/instrumentation/instrumentation_test: Crash # (try {body();}catch ... try/finally +analyzer/test/cancelable_future_test: Crash # Invalid argument(s) +analyzer/test/enum_test: Crash # Invalid argument(s) +analyzer/test/file_system/memory_file_system_test: Crash # Invalid argument(s) +analyzer/test/file_system/physical_resource_provider_test: Crash # Invalid argument(s) +analyzer/test/file_system/resource_uri_resolver_test: Crash # Invalid argument(s) +analyzer/test/generated/all_the_rest_test: Crash # (try {body();}catch ... try/catch/finally +analyzer/test/generated/ast_test: Crash # Invalid argument(s) +analyzer/test/generated/compile_time_error_code_test: Crash # Invalid argument(s) +analyzer/test/generated/element_test: Crash # Invalid argument(s) +analyzer/test/generated/incremental_resolver_test: Crash # Invalid argument(s) +analyzer/test/generated/incremental_scanner_test: Crash # Invalid argument(s) +analyzer/test/generated/java_core_test: Crash # (try {body();}catch ... try/catch/finally +analyzer/test/generated/java_io_test: Crash # (try {body();}catch ... try/catch/finally +analyzer/test/generated/non_error_resolver_test: Crash # Invalid argument(s) +analyzer/test/generated/parser_test: Crash # Invalid argument(s) +analyzer/test/generated/resolver_test: Crash # Invalid argument(s) +analyzer/test/generated/scanner_test: Crash # Invalid argument(s) +analyzer/test/generated/static_type_warning_code_test: Crash # Invalid argument(s) +analyzer/test/generated/static_warning_code_test: Crash # Invalid argument(s) +analyzer/test/generated/type_system_test: Crash # Invalid argument(s) +analyzer/test/generated/utilities_test: Crash # Invalid argument(s) +analyzer/test/instrumentation/instrumentation_test: Crash # (try {body();}catch ... try/catch/finally analyzer/test/parse_compilation_unit_test: Crash # Invalid argument(s) -analyzer/test/source/package_map_provider_test: Crash # (try {body();}catch ... try/finally -analyzer/test/source/package_map_resolver_test: Crash # (try {test(spec,body);}finally {environment.soloNestingLevel-- ;}): try/finally -analyzer/test/src/context/cache_test: Crash # (try {body();}catch ... try/finally -analyzer/test/src/context/context_test: Crash # (try {body();}catch ... try/finally -analyzer/test/src/task/dart_test: Crash # (try {test(spec,body);}finally {environment.soloNestingLevel-- ;}): try/finally -analyzer/test/src/task/dart_work_manager_test: Crash # (try {body();}catch ... try/finally -analyzer/test/src/task/driver_test: Crash # (try {body();}catch ... try/finally -analyzer/test/src/task/general_test: Crash # (try {body();}catch ... try/finally -analyzer/test/src/task/html_test: Crash # (try {test(spec,body);}finally {environment.soloNestingLevel-- ;}): try/finally -analyzer/test/src/task/incremental_element_builder_test: Crash # (try {test(spec,body);}finally {environment.soloNestingLevel-- ;}): try/finally -analyzer/test/src/task/inputs_test: Crash # (try {test(spec,body);}finally {environment.soloNestingLevel-- ;}): try/finally -analyzer/test/src/task/manager_test: Crash # (try {test(spec,body);}finally {environment.soloNestingLevel-- ;}): try/finally -analyzer/test/src/task/model_test: Crash # (try {test(spec,body);}finally {environment.soloNestingLevel-- ;}): try/finally -analyzer/test/src/util/asserts_test: Crash # (try {test(spec,body);}finally {environment.soloNestingLevel-- ;}): try/finally -analyzer/test/src/util/lru_map_test: Crash # (try {test(spec,body);}finally {environment.soloNestingLevel-- ;}): try/finally -fixnum/test/int_32_test: Crash # (try {body();}catch ... try/finally -fixnum/test/int_64_test: Crash # (try {body();}catch ... try/finally -js_ast/test/printer_callback_test : RuntimeError # Please triage this failure. (Something with growable lists) +analyzer/test/source/package_map_provider_test: Crash # (try {body();}catch ... try/catch/finally +analyzer/test/source/package_map_resolver_test: Crash # Invalid argument(s) +analyzer/test/src/context/cache_test: Crash # (try {body();}catch ... try/catch/finally +analyzer/test/src/context/context_test: Crash # (try {body();}catch ... try/catch/finally +analyzer/test/src/task/dart_test: Crash # Invalid argument(s) +analyzer/test/src/task/dart_work_manager_test: Crash # (try {body();}catch ... try/catch/finally +analyzer/test/src/task/driver_test: Crash # (try {body();}catch ... try/catch/finally +analyzer/test/src/task/general_test: Crash # (try {body();}catch ... try/catch/finally +analyzer/test/src/task/html_test: Crash # Invalid argument(s) +analyzer/test/src/task/html_work_manager_test: Crash # (try {body();}catch ... try/catch/finally +analyzer/test/src/task/incremental_element_builder_test: Crash # Invalid argument(s) +analyzer/test/src/task/inputs_test: Crash # Invalid argument(s) +analyzer/test/src/task/manager_test: Crash # Invalid argument(s) +analyzer/test/src/task/model_test: Crash # Invalid argument(s) +analyzer/test/src/util/asserts_test: Crash # Invalid argument(s) +analyzer/test/src/util/lru_map_test: Crash # Invalid argument(s) +fixnum/test/int_32_test: Crash # (try {body();}catch ... try/catch/finally +fixnum/test/int_64_test: Crash # (try {body();}catch ... try/catch/finally +js_ast/test/printer_callback_test: RuntimeError # Please triage this failure. microlytics/test/dart_microlytics_test: RuntimeError # Please triage this failure. typed_data/test/typed_buffers_test/01: Crash # Invalid argument(s) typed_data/test/typed_buffers_test/none: Crash # Invalid argument(s) -typed_mock/test/typed_mock_test: Crash # (try {body();}catch ... try/finally +typed_mock/test/typed_mock_test: Crash # (try {body();}catch ... try/catch/finally diff --git a/samples/samples.status b/samples/samples.status index d2ff8dbfa40..92b483733d8 100644 --- a/samples/samples.status +++ b/samples/samples.status @@ -25,4 +25,4 @@ sample_extension/test/sample_extension_test: Skip # Issue 14705 *: Skip [ $compiler == dart2js && $cps_ir ] -sample_extension/test/sample_extension_test: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally +sample_extension/test/sample_extension_test: Crash # Invalid argument(s) diff --git a/tests/benchmark_smoke/benchmark_smoke.status b/tests/benchmark_smoke/benchmark_smoke.status index 5c1b12dd72c..7eef00b9676 100644 --- a/tests/benchmark_smoke/benchmark_smoke.status +++ b/tests/benchmark_smoke/benchmark_smoke.status @@ -9,4 +9,4 @@ *: Fail, Pass # TODO(ahe): Triage these tests. [ $compiler == dart2js && $cps_ir ] -benchmark_smoke_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +benchmark_smoke_test: Crash # Invalid argument(s) diff --git a/tests/co19/co19-dart2js.status b/tests/co19/co19-dart2js.status index a5586f2843c..46db47bdcbe 100644 --- a/tests/co19/co19-dart2js.status +++ b/tests/co19/co19-dart2js.status @@ -9624,7 +9624,7 @@ Language/12_Expressions/13_Property_Extraction_A01_t03: RuntimeError # Cannot re Language/12_Expressions/13_Property_Extraction_A03_t01: RuntimeError # Cannot read property 'call' of undefined Language/12_Expressions/13_Property_Extraction_A03_t02: RuntimeError # Cannot read property 'call' of undefined Language/12_Expressions/13_Property_Extraction_A03_t03: RuntimeError # Cannot read property 'call' of undefined -Language/12_Expressions/13_Spawning_an_Isolate_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +Language/12_Expressions/13_Spawning_an_Isolate_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function Language/12_Expressions/14_Function_Invocation/4_Function_Expression_Invocation_A01_t02: RuntimeError # Please triage this failure. Language/12_Expressions/15_Method_Invocation/1_Ordinary_Invocation_A05_t04: RuntimeError # Cannot read property 'prototype' of undefined Language/12_Expressions/15_Method_Invocation/3_Static_Invocation_A04_t05: RuntimeError # Cannot read property 'prototype' of undefined @@ -9644,36 +9644,32 @@ Language/12_Expressions/30_Identifier_Reference_A10_t02: RuntimeError # Cannot r Language/13_Statements/02_Expression_Statements_A01_t06: RuntimeError # Cannot read property 'prototype' of undefined Language/13_Statements/06_For/1_For_Loop_A01_t09: RuntimeError # Please triage this failure. Language/13_Statements/06_For_A01_t07: Crash # unsupported operation on erroneous element -Language/13_Statements/11_Return_A02_t02: Crash # (try {return 1;}finally {flag=true;}): try/finally -Language/13_Statements/11_Return_A02_t03: Crash # (try {return 1;}finally {return 2;}): try/finally -Language/13_Statements/11_Try_A01_t01: Crash # (try {throw "";}on int catch (ok){}catch (ok){}finally {}): try/finally -Language/13_Statements/11_Try_A07_t02: Crash # (try {throw ex;}on int catch (i){}on bool catch (b){}finally {isFinallyExecuted=true;}): try/finally -Language/13_Statements/11_Try_A08_t01: Crash # (try {throw ex;}on E... try/finally -Language/13_Statements/11_Try_A09_t01: Crash # (try {do{try {for(in... try/finally -Language/13_Statements/11_Try_A10_t01: Crash # (try {append(1);f();... try/finally -Language/13_Statements/11_Try_A11_t01: Crash # (try {throw exStr;}o... try/finally -Language/13_Statements/11_Try_A11_t02: Crash # (try {throw exStr;}o... try/finally -Language/13_Statements/11_Try_A11_t03: Crash # (try {throw 42;}finally {return true;}): try/finally -Language/13_Statements/11_Try_A11_t04: Crash # (try {throw 42;}finally {throw true;}): try/finally -Language/13_Statements/11_Try_A12_t01: Crash # (try {append(1);f();... try/finally +Language/13_Statements/11_Try_A01_t01: Crash # (try {throw "";}on int catch (ok){}catch (ok){}finally {}): try/catch/finally +Language/13_Statements/11_Try_A07_t02: Crash # (try {throw ex;}on i... try/catch/finally +Language/13_Statements/11_Try_A08_t01: Crash # (try {throw ex;}on E... try/catch/finally +Language/13_Statements/11_Try_A09_t01: Crash # (try {throw new Exception("fail");}on int catch (e){}finally {}): try/catch/finally +Language/13_Statements/11_Try_A10_t01: Crash # (try {append(1);f();... try/catch/finally +Language/13_Statements/11_Try_A11_t01: Crash # (try {throw exStr;}o... try/catch/finally +Language/13_Statements/11_Try_A11_t02: Crash # (try {throw exStr;}o... try/catch/finally +Language/13_Statements/11_Try_A12_t01: Crash # (try {append(1);f();... try/catch/finally Language/13_Statements/12_Labels_A03_t04: Crash # (switch (i){L:case 0:flag=true;break;case 2:continue L;}): continue to a labeled switch case -Language/13_Statements/13_Break_A03_t01: Crash # (try {try {try {M:do... try/finally -Language/13_Statements/13_Break_A03_t02: Crash # (try {throw 1;}on in... try/finally -Language/13_Statements/13_Break_A03_t03: Crash # (try {try {L:try {th... try/finally -Language/13_Statements/13_Break_A03_t04: Crash # (try {for(int i in [... try/finally -Language/13_Statements/13_Break_A03_t06: Crash # (try {do{M:for(int i... try/finally -Language/13_Statements/13_Break_A03_t07: Crash # (try {try {flag=true;break;}finally {order.add(3);}}finally {order.add(2);}): try/finally -Language/13_Statements/13_Break_A03_t08: Crash # (try {try {break;}finally {order.add(2);}}finally {order.add(1);}): try/finally -Language/13_Statements/13_Break_A03_t09: Crash # (try {for(int i in [... try/finally +Language/13_Statements/13_Break_A03_t01: Crash # (try {break L;Expect... try/catch/finally +Language/13_Statements/13_Break_A03_t02: Crash # (try {throw 1;}on in... try/catch/finally +Language/13_Statements/13_Break_A03_t03: Crash # (try {throw 1;}on in... try/catch/finally +Language/13_Statements/13_Break_A03_t04: RuntimeError # Please triage this failure. +Language/13_Statements/13_Break_A03_t06: Crash # (try {break;Expect.f... try/catch/finally +Language/13_Statements/13_Break_A03_t07: RuntimeError # Please triage this failure. +Language/13_Statements/13_Break_A03_t08: RuntimeError # Please triage this failure. +Language/13_Statements/13_Break_A03_t09: Crash # (try {break;Expect.f... try/catch/finally Language/13_Statements/14_Continue_A02_t12: Crash # (switch (2){L:case 1:flag=true;break;case 2:continue L;}): continue to a labeled switch case Language/13_Statements/14_Continue_A02_t13: Crash # (switch (2){case 2:continue L;L:case 1:flag=true;}): continue to a labeled switch case -Language/13_Statements/14_Continue_A03_t01: Crash # (try {try {try {if(o... try/finally -Language/13_Statements/14_Continue_A03_t02: Crash # (try {while(i<3){try... try/finally -Language/13_Statements/14_Continue_A03_t03: Crash # (try {switch (i){cas... try/finally -Language/13_Statements/14_Continue_A03_t04: Crash # (try {try {continue;... try/finally -Language/13_Statements/14_Continue_A03_t05: Crash # (try {try {flag=true... try/finally -Language/13_Statements/14_Continue_A03_t06: Crash # (try {throw 1;}on in... try/finally -Language/13_Statements/14_Continue_A03_t07: Crash # (try {throw 1;}on in... try/finally +Language/13_Statements/14_Continue_A03_t01: Crash # (try {if(order.lengt... try/catch/finally +Language/13_Statements/14_Continue_A03_t02: RuntimeError # Please triage this failure. +Language/13_Statements/14_Continue_A03_t03: RuntimeError # Please triage this failure. +Language/13_Statements/14_Continue_A03_t04: Crash # (try {continue;Expec... try/catch/finally +Language/13_Statements/14_Continue_A03_t05: RuntimeError # Please triage this failure. +Language/13_Statements/14_Continue_A03_t06: Crash # (try {throw 1;}on in... try/catch/finally +Language/13_Statements/14_Continue_A03_t07: Crash # (try {throw 1;}on in... try/catch/finally Language/14_Libraries_and_Scripts/1_Imports_A02_t06: RuntimeError # Please triage this failure. Language/14_Libraries_and_Scripts/4_Scripts_A03_t03: RuntimeError # receiver.get$_collection$_nums is not a function Language/15_Types/3_Type_Declarations/1_Typedef_A02_t01: RuntimeError # Cannot read property 'prototype' of undefined @@ -9712,901 +9708,294 @@ Language/15_Types/5_Function_Types_A05_t02: RuntimeError # Cannot read property Language/15_Types/5_Function_Types_A05_t05: RuntimeError # Cannot read property 'prototype' of undefined Language/15_Types/5_Function_Types_A06_t01: RuntimeError # Cannot read property 'prototype' of undefined Language/16_Reference/1_Lexical_Rules/2_Comments_A02_t10: RuntimeError # Please triage this failure. -LayoutTests/fast/animation/request-animation-frame-callback-id_t01: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/animation/request-animation-frame-cancel2_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/animation/request-animation-frame-cancel_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/animation/request-animation-frame-prefix_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/animation/request-animation-frame-timestamps-advance_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/animation/request-animation-frame-timestamps_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/animation/request-animation-frame-within-callback_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/backgrounds/001_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/backgrounds/animated-gif-as-background_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/backgrounds/multiple-backgrounds-assert_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/2d.text.draw.fill.maxWidth.gradient_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/2d.text.draw.fill.maxWidth.negative_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/2d.text.draw.fill.maxWidth.veryLarge_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/2d.text.draw.fill.maxWidth.verySmall_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/DrawImageSinglePixelStretch_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/canvas-as-image-incremental-repaint_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/canvas-as-image_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/canvas-before-css_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/canvas-blending-color-over-image_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/canvas-blending-color-over-pattern_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/canvas-blending-gradient-over-image_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/canvas-blending-gradient-over-pattern_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/canvas-blending-image-over-color_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/canvas-blending-image-over-gradient_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/canvas-blending-image-over-image_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/canvas-blending-image-over-pattern_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/canvas-blending-pattern-over-color_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/canvas-blending-pattern-over-gradient_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/canvas-blending-pattern-over-image_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/canvas-blending-pattern-over-pattern_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/canvas-composite-alpha_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/canvas-composite-canvas_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/canvas-composite-image_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/canvas-composite-stroke-alpha_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/canvas-composite-text-alpha_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/canvas-css-crazy_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/canvas-imageSmoothingEnabled-repaint_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/canvas-lose-restore-googol-size_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/canvas-lose-restore-max-int-size_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/canvas-resize-after-paint_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/canvas-scale-drawImage-shadow_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/crash-set-font_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/drawImage-with-broken-image_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/drawImage-with-valid-image_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/setWidthResetAfterForcedRender_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/webgl/WebGLContextEvent_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/webgl/canvas-2d-webgl-texture_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/webgl/canvas-resize-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/webgl/canvas-test_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally LayoutTests/fast/canvas/webgl/compressed-tex-image_t01: Crash # Invalid argument(s) -LayoutTests/fast/canvas/webgl/context-destroyed-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/webgl/context-lost-restored_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/webgl/context-lost_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/webgl/css-webkit-canvas-repaint_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/webgl/css-webkit-canvas_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/webgl/draw-webgl-to-canvas-2d_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/webgl/framebuffer-bindings-unaffected-on-resize_t01: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally LayoutTests/fast/canvas/webgl/framebuffer-object-attachment_t01: Crash # Invalid argument(s) -LayoutTests/fast/canvas/webgl/gl-teximage_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/webgl/oes-element-index-uint_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/webgl/oes-vertex-array-object_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/webgl/premultiplyalpha-test_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/webgl/read-pixels-test_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-rgb565_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-rgba4444_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-rgba5551_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video-rgb565_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video-rgba4444_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video-rgba5551_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/webgl/texture-color-profile_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/webgl/texture-transparent-pixels-initialized_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/webgl/webgl-composite-modes-repaint_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/webgl/webgl-depth-texture_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/webgl/webgl-large-texture_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/webgl/webgl-layer-update_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/webgl/webgl-texture-binding-preserved_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/canvas/webgl/webgl-viewport-parameters-preserved_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-generated-content/bug91547_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-generated-content/float-first-letter-siblings-convert-to-inline_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-generated-content/inline-splitting-with-after-float-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-generated-content/pseudo-animation-before-onload_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-generated-content/pseudo-animation-display_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-generated-content/pseudo-animation_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-generated-content/pseudo-element-events_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-generated-content/pseudo-transition-event_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-generated-content/pseudo-transition_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/auto-content-resolution-rows_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/breadth-size-resolution-grid_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/calc-resolution-grid-item_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/display-grid-set-get_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/flex-and-minmax-content-resolution-rows_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/flex-content-resolution-columns_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/flex-content-resolution-rows_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/grid-auto-columns-rows-get-set_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/grid-auto-flow-get-set_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/grid-auto-flow-update_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/grid-container-change-explicit-grid-recompute-child_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/grid-element-bad-cast-addchild_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/grid-element-border-grid-item_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/grid-element-border-padding-grid-item_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/grid-element-empty-row-column_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/grid-element-min-max-height_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/grid-element-padding-grid-item_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/grid-element-padding-margin_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/grid-element-remove-svg-child_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/grid-element-shrink-to-fit_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/grid-item-area-get-set_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/grid-item-bad-named-area-auto-placement_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/grid-item-bad-resolution-double-span_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/grid-item-change-order-auto-flow_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/grid-item-display_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/grid-item-margin-auto-columns-rows-horiz-bt_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/grid-item-margin-auto-columns-rows-vert-lr_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/grid-item-margin-auto-columns-rows-vert-rl_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/grid-item-margin-auto-columns-rows_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/grid-item-margin-resolution_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/grid-item-order-auto-flow-resolution_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/grid-strict-ordering-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/grid-template-areas-get-set_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/implicit-rows-auto-resolution_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/justify-self-cell_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/minmax-fixed-logical-height-only_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/minmax-fixed-logical-width-only_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/percent-grid-item-in-percent-grid-track-in-percent-grid_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/percent-grid-item-in-percent-grid-track-update_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/percent-grid-item-in-percent-grid-track_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/percent-padding-margin-resolution-grid-item-update_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/percent-padding-margin-resolution-grid-item_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/percent-resolution-grid-item_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-grid-layout/place-cell-by-index_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-intrinsic-dimensions/css-tables_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-intrinsic-dimensions/intrinsic-sized-absolutes_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-intrinsic-dimensions/intrinsic-sized-blocks_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-intrinsic-dimensions/intrinsic-sized-column-flex-items_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-intrinsic-dimensions/intrinsic-sized-flex-items_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-intrinsic-dimensions/intrinsic-sized-replaced-absolutes_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-intrinsic-dimensions/multicol_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-intrinsic-dimensions/tables_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css-intrinsic-dimensions/width-shrinks-avoid-floats_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/attribute-selector-begin-dynamic-no-elementstyle_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/cached-sheet-restore-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/comment-before-charset-external_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/comment-before-charset_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/content/content-none_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/content/content-normal_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/content/content-quotes-01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/content/content-quotes-02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/content/content-quotes-03_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/content/content-quotes-04_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/content/content-quotes-05_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/content/content-quotes-06_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/counters/asterisk-counter-update-after-layout-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/counters/complex-before_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/counters/counter-before-selector-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/counters/counter-reparent-table-children-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/counters/counter-reset-subtree-insert-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/counters/counter-ruby-text-cleared_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/counters/counter-traverse-object-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/crash-on-incomplete-not_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/css-keyframe-style-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/device-aspect-ratio_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/first-letter-inline-flow-split-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/first-letter-inline-flow-split-table-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/focus-display-block-inline_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/font-face-cache-bug_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/font-face-insert-link_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/font-face-svg-decoding-error_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/font-face-unicode-range-load_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/font-face-unicode-range-overlap-load_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/font-face-used-after-retired_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/fontfaceset-download-error_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/fontfaceset-events_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/fontfaceset-loadingdone_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/implicit-attach-marking_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/link-alternate-stylesheet-1_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/link-alternate-stylesheet-2_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/link-alternate-stylesheet-3_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/link-alternate-stylesheet-4_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/link-alternate-stylesheet-5_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/link-disabled-attr-parser_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/max-device-aspect-ratio_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/min-device-aspect-ratio_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/nested-at-rules_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/percent-min-width-img-src-change_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/percent-width-img-src-change_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/positioned-in-relative-position-inline-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/pseudo-target-indirect-sibling-001_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/pseudo-target-indirect-sibling-002_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/relative-position-replaced-in-table-display-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/relative-positioned-block-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/remove-fixed-resizer-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/shadow-current-color_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/sheet-collection-link_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/sheet-title_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/space-before-charset-external_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/space-before-charset_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/sticky/remove-inline-sticky-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/sticky/remove-sticky-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/sticky/sticky-table-col-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/style-element-process-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/style-scoped/style-scoped-shadow-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/stylesheet-enable-first-alternate-link_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/stylesheet-enable-first-alternate-on-load-link_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/stylesheet-enable-first-alternate-on-load-sheet_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/stylesheet-enable-second-alternate-link_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/stylesheet-parentStyleSheet_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/webkit-keyframes-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/css/webkit-marquee-speed-unit-in-quirksmode_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/Document/CaretRangeFromPoint/caretRangeFromPoint-in-zoom-and-scroll_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLAnchorElement/remove-href-from-focused-anchor_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLButtonElement/change-type_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLDialogElement/submit-dialog-close-event_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLDocument/active-element-gets-unforcusable_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLDocument/set-focus-on-valid-element_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLFormElement/move-option-between-documents_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLImageElement/image-loading-gc_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLImageElement/image-natural-width-height_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLImageElement/image-src-absolute-url_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLLabelElement/click-label_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLLinkElement/link-and-subresource-test-nonexistent_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLLinkElement/link-and-subresource-test_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLLinkElement/link-beforeload-recursive_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLLinkElement/link-onerror-stylesheet-with-existent-and-non-existent-import_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLLinkElement/link-onerror-stylesheet-with-non-existent-import_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLLinkElement/link-onerror_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLLinkElement/link-onload-before-page-load_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLLinkElement/link-onload-stylesheet-with-import_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLLinkElement/link-onload2_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLLinkElement/link-onload_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLLinkElement/onload-completion-test_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLLinkElement/prefetch-beforeload_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLLinkElement/prefetch-onerror_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLLinkElement/prefetch-onload_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLLinkElement/prefetch_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLLinkElement/subresource_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLObjectElement/beforeload-set-text-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLObjectElement/children-changed_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLObjectElement/set-type-to-null-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLProgressElement/progress-element-with-style-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLScriptElement/async-false-inside-async-false-load_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLScriptElement/async-onbeforeload_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLScriptElement/defer-onbeforeload_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLScriptElement/defer-script-invalid-url_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLScriptElement/dont-load-unknown-type_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLScriptElement/isURLAttribute_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLScriptElement/remove-in-beforeload_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLScriptElement/remove-source_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLScriptElement/script-for-attribute-unexpected-execution_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLScriptElement/script-load-events_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLScriptElement/script-reexecution_t01: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLScriptElement/script-set-src_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLSelectElement/named-options_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLSelectElement/remove-element-from-within-focus-handler-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLStyleElement/programmatically-add-style-with-onerror-handler_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLStyleElement/programmatically-add-style-with-onload-handler_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLStyleElement/style-onerror-with-existent-and-non-existent-import_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLStyleElement/style-onerror_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLStyleElement/style-onload-before-page-load_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLStyleElement/style-onload2_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLStyleElement/style-onload_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/HTMLTemplateElement/innerHTML-inert_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/MutationObserver/added-out-of-order_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/MutationObserver/callback-arguments_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/MutationObserver/clear-transient-without-delivery_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/MutationObserver/create-during-delivery_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/MutationObserver/cross-document_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/MutationObserver/database-callback-delivery_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/MutationObserver/delivery-order_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/MutationObserver/disconnect-cancel-pending_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/MutationObserver/disconnect-transient-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/MutationObserver/document-fragment-insertion_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/MutationObserver/mutate-during-delivery_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/MutationObserver/mutation-record-constructor_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/MutationObserver/mutation-record-nullity_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/MutationObserver/observe-attributes_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/MutationObserver/observe-characterdata_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/MutationObserver/observe-childList_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/MutationObserver/observe-exceptions_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/MutationObserver/observe-options-attributes_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/MutationObserver/observe-options-character-data_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/MutationObserver/observe-subtree_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/MutationObserver/observer-wrapper-dropoff-transient_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/MutationObserver/observer-wrapper-dropoff_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/MutationObserver/removed-out-of-order_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/MutationObserver/takeRecords_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/MutationObserver/transient-gc-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/MutationObserver/weak-callback-gc-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/NodeList/nodelist-moved-to-fragment-2_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/SelectorAPI/bug-17313_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/StyleSheet/css-insert-import-rule-to-shadow-stylesheets_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/StyleSheet/detached-style-2_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/StyleSheet/detached-style_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/StyleSheet/discarded-sheet-owner-null_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/Window/getMatchedCSSRules-nested-rules_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/Window/getMatchedCSSRules-parent-stylesheets_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/blur-contenteditable_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/css-cached-import-rule_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/css-delete-doc_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/css-insert-import-rule-twice_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/css-insert-import-rule_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/css-mediarule-deleteRule-update_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/css-mediarule-insertRule-update_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/cssTarget-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/custom/document-register-on-create-callback_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/document-set-title-mutations_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/domtimestamp-is-number_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/empty-hash-and-search_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/focus-contenteditable_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/gc-image-element-2_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/gc-image-element_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/horizontal-scrollbar-in-rtl-doesnt-fire-onscroll_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/horizontal-scrollbar-in-rtl_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/horizontal-scrollbar-when-dir-change_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/html-collections-named-getter-mandatory-arg_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/icon-url-change_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/icon-url-list_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/id-attribute-with-namespace-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/image-object_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/inner-text_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/location-hash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/non-styled-element-id-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/onerror-img_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/partial-layout-non-overlay-scrollbars_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/partial-layout-overlay-scrollbars_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/remove-body-during-body-replacement_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/shadow/access-document-of-detached-stylesheetlist-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/shadow/content-pseudo-element-dynamic-attribute-change_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/shadow/distribution-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/shadow/insertion-point-list-menu-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/shadow/insertion-point-video-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/shadow/link-in-shadow-tree_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/shadow/nested-reprojection-inconsistent_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/shadow/no-renderers-for-light-children_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/shadow/pseudoclass-update-checked-option_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/shadow/pseudoclass-update-disabled-optgroup_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/shadow/pseudoclass-update-disabled-option_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/shadow/pseudoclass-update-enabled-optgroup_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/shadow/pseudoclass-update-enabled-option_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/shadow/remove-and-insert-style_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/shadow/shadowhost-keyframes_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/shadow/shadowroot-keyframes_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/shared-inline-style-after-node-removal_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/subtree-modified-attributes_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/text-node-attach-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/vertical-scrollbar-in-rtl-doesnt-fire-onscroll_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dom/vertical-scrollbar-when-dir-change_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dynamic/continuation-detach-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dynamic/inline-to-block-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dynamic/jQuery-animation-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/dynamic/layer-no-longer-paginated_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/encoding/css-charset-dom_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/add-event-without-document_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/change-overflow-on-overflow-change_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/clipboard-clearData_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/clipboard-dataTransferItemList-remove_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/clipboard-dataTransferItemList_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/create-document-crash-on-attach-event_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/defaultprevented_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/dispatch-event-being-dispatched_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/dispatch-event-no-document_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/div-focus_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/document-elementFromPoint_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/event-attributes-after-exception_t01: Crash # (try {document.body.... try/finally -LayoutTests/fast/events/event-fire-order_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/event-listener-html-non-html-confusion_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/event-on-created-document_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/event-on-xhr-document_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/fire-scroll-event-element_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/fire-scroll-event_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/form-onchange_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/invalid-001_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/invalid-002_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/invalid-003_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/invalid-004_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/invalid-005_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/label-focus_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/nested-event-remove-node-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/no-window-load_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/onerror-bubbling_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/onerror-img-after-gc_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/overflowchanged-event-raf-timing_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/programmatic-check-no-change-event_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/scroll-during-zoom-change_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/scroll-event-does-not-bubble_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/scroll-event-phase_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/selectstart-on-selectall_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/selectstart-prevent-selectall_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/stopPropagation-checkbox_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/tabindex-removal-from-focused-element_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/window-load-capture_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/events/xhr-onclick-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/eventsource/eventsource-attribute-listeners_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/files/blob-close-read_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/files/blob-close-revoke_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/files/blob-parts-slice-test_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/files/blob-slice-test_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/files/file-reader-abort-in-last-progress_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/files/file-reader-done-reading-abort_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/files/file-reader-fffd_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/files/file-reader-immediate-abort_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/files/file-reader-readystate_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/files/file-reader-result-twice_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/files/read-blob-as-array-buffer_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/files/workers/inline-worker-via-blob-url_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/files/xhr-response-blob_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/filesystem/async-operations_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/filesystem/directory-entry-to-uri_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/filesystem/file-after-reload-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/filesystem/file-entry-to-uri_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/filesystem/file-from-file-entry_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/filesystem/file-metadata-after-write_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/filesystem/file-writer-abort-continue_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/filesystem/file-writer-abort-depth_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/filesystem/file-writer-abort_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/filesystem/file-writer-empty-blob_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/filesystem/file-writer-events_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/filesystem/file-writer-gc-blob_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/filesystem/file-writer-truncate-extend_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/filesystem/file-writer-write-overlapped_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/filesystem/filesystem-reference_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/filesystem/filesystem-unserializable_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/filesystem/op-copy_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/filesystem/op-get-entry_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/filesystem/op-get-metadata_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/filesystem/op-get-parent_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/filesystem/op-move_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/filesystem/op-read-directory_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/filesystem/op-remove_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/filesystem/op-restricted-chars_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/filesystem/op-restricted-names_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/filesystem/op-restricted-unicode_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/filesystem/read-directory-many_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/filesystem/read-directory_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/filesystem/simple-readonly-file-object_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/filesystem/simple-readonly_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/filesystem/simple-required-arguments-getdirectory_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/filesystem/simple-required-arguments-getfile_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/filesystem/simple-temporary_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/filesystem/snapshot-file-with-gc_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/flexbox/crash-flexbox-no-layout-child_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/flexbox/layoutHorizontalBox-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/flexbox/overhanging-floats-not-removed-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/HTMLOptionElement_selected_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/activate-and-disabled-elements_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/autofocus-focus-only-once_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/autofocus-input-css-style-change_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/autofocus-opera-004_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/autofocus-opera-005_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/autofocus-opera-007_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/autofocus-readonly-attribute_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/button-click-DOM_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/button/button-disabled-blur_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/checkbox-click-indeterminate_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/checkbox-onchange_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/dangling-form-element-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +LayoutTests/fast/events/clipboard-dataTransferItemList_t01: Crash # Internal Error: No default constructor available. +LayoutTests/fast/events/event-attributes-after-exception_t01: Crash # (try {document.body.... try/catch/finally LayoutTests/fast/forms/date/date-interactive-validation-required_t01: Crash # Invalid argument(s) LayoutTests/fast/forms/datetimelocal/datetimelocal-interactive-validation-required_t01: Crash # Invalid argument(s) -LayoutTests/fast/forms/focus-style-pending_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/focus_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/form-added-to-table_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/form-associated-element-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/form-input-named-arguments_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/form-submission-create-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/image/image-error-event-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/image/image-error-event-modifies-type-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/input-type-change_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/input-width-height-attributes-without-renderer-loaded-image_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/input-width-height-attributes-without-renderer_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/interactive-validation-assertion-by-validate-twice_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/interactive-validation-attach-assertion_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/interactive-validation-select-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/listbox-scroll-after-options-removed_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/menulist-disabled-selected-option_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/menulist-no-renderer-onmousedown_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/menulist-submit-without-selection_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/onchange-change-type_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/search-placeholder-value-changed_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/search-popup-crasher_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/select-change-listbox-to-popup-roundtrip_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/select-change-popup-to-listbox-in-event-handler_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/select-change-popup-to-listbox-roundtrip_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/select-generated-content_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/select-list-box-mouse-focus_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/select-namedItem_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/textarea-placeholder-relayout-assertion_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/textarea-scrollbar-height_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/forms/textfield-focus-out_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/html/eventhandler-attribute-non-callable_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/html/imports/import-element-removed-flag_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/loader/about-blank-hash-change_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/loader/about-blank-hash-kept_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/loader/hashchange-event-async_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/loader/hashchange-event-properties_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/loader/local-css-allowed-in-strict-mode_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/loader/onhashchange-attribute-listeners_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/loader/onload-policy-ignore-for-frame_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/loader/scroll-position-restored-on-back_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/loader/scroll-position-restored-on-reload-at-load-event_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/loader/stateobjects/pushstate-updates-location_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/loader/stateobjects/replacestate-in-onunload_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/loader/stateobjects/replacestate-updates-location_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/media/mq-js-update-media_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/media/mq-parsing_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/mediastream/RTCPeerConnection-AddRemoveStream_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/overflow/scroll-vertical-not-horizontal_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/parser/href-whitespace_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/parser/image-tag-parses-to-HTMLImageElement_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/parser/parse-wbr_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/parser/pop-all-after-after-body_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/parser/residual-style-close-across-n-blocks_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/parser/stray-param_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/parser/strict-img-in-map_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/replaced/computed-image-width-with-percent-height-and-fixed-ancestor-vertical-lr_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/replaced/computed-image-width-with-percent-height-and-fixed-ancestor_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/replaced/computed-image-width-with-percent-height-inside-table-cell-and-fixed-ancestor-vertical-lr_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/replaced/computed-image-width-with-percent-height-inside-table-cell-and-fixed-ancestor_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/replaced/iframe-with-percentage-height-within-table-with-anonymous-table-cell_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/replaced/iframe-with-percentage-height-within-table-with-table-cell-ignore-height_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/replaced/preferred-widths_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/replaced/table-percent-height-text-controls_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/replaced/table-percent-height_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/replaced/table-percent-width_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/replaced/table-replaced-element_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/ruby/after-doesnt-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/ruby/modify-positioned-ruby-text-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/ruby/parse-rp_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-image-margin_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-image-margin_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/speechsynthesis/speech-synthesis-boundary-events_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/speechsynthesis/speech-synthesis-cancel_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/speechsynthesis/speech-synthesis-pause-resume_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/speechsynthesis/speech-synthesis-speak_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/speechsynthesis/speech-synthesis-utterance-uses-voice_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/storage/storage-disallowed-in-data-url_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/sub-pixel/float-list-inside_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/svg/tabindex-focus_t01: Crash # (try {element.setAtt... try/finally -LayoutTests/fast/svg/whitespace-angle_t01: Crash # (try {target.setAttr... try/finally -LayoutTests/fast/svg/whitespace-integer_t01: Crash # (try {target.setAttr... try/finally -LayoutTests/fast/svg/whitespace-length-invalid_t01: Crash # (try {target.setAttr... try/finally -LayoutTests/fast/svg/whitespace-length_t01: Crash # (try {target.setAttr... try/finally -LayoutTests/fast/svg/whitespace-number_t01: Crash # (try {target.setAttr... try/finally -LayoutTests/fast/table/before-child-non-table-section-add-table-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/table/col-width-span-expand_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/table/css-table-max-height_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/table/css-table-width-with-border-padding_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/table/fixed-table-layout-toggle-colwidth_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/table/fixed-table-layout-width-change_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/table/hittest-tablecell-bottom-edge_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/table/hittest-tablecell-right-edge_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/table/hittest-tablecell-with-borders-bottom-edge_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/table/hittest-tablecell-with-borders-right-edge_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/table/html-table-width-max-width-constrained_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/table/margins-flipped-text-direction_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/table/margins-perpendicular-containing-block_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/table/min-max-width-preferred-size_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/table/nested-tables-with-div-offset_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/table/rowindex-comment-nodes_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/table/table-all-rowspans-height-distribution-in-rows-except-overlapped_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/table/table-all-rowspans-height-distribution-in-rows_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/table/table-colgroup-present-after-table-row_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/table/table-rowspan-cell-with-empty-cell_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/table/table-rowspan-height-distribution-in-rows_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/table/table-rowspan-height-distribution-in-rows_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/table/table-size-integer-overflow_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/table/table-width-exceeding-max-width_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/table/table-with-content-width-exceeding-max-width_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/text-autosizing/vertical-writing-mode_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/text/find-case-folding_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/text/find-hidden-text_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/text/find-quotes_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/text/find-spaces_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/text/font-ligature-letter-spacing_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/text/font-ligatures-linebreak-word_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/text/font-ligatures-linebreak_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/text/font-linux-normalize_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/text/international/cjk-segmentation_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/text/ipa-tone-letters_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/text/soft-hyphen-5_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/text/split-text-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/text/zero-width-characters-complex-script_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/tokenizer/entities_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/tokenizer/entities_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/tokenizer/entities_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/transforms/bounding-rect-zoom_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/transforms/hit-test-large-scale_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/transforms/scrollIntoView-transformed_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/transforms/transform-hit-test-flipped_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/writing-mode/broken-ideographic-font_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/writing-mode/overhanging-float-legend-crash_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/writing-mode/percentage-margins-absolute-replaced_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/writing-mode/percentage-margins-absolute_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/writing-mode/vertical-font-vmtx-units-per-em_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/xmlhttprequest/null-document-xmlhttprequest-open_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/xmlhttprequest/xmlhttprequest-default-attributes_t01: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/xmlhttprequest/xmlhttprequest-get_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/xmlhttprequest/xmlhttprequest-html-response-encoding_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/xmlhttprequest/xmlhttprequest-responseXML-html-document-responsetype-quirks_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/xmlhttprequest/xmlhttprequest-responseXML-html-no-responsetype_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/xmlhttprequest/xmlhttprequest-responseXML-invalid-xml_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/xmlhttprequest/xmlhttprequest-responseXML-xml-document-responsetype_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/xmlhttprequest/xmlhttprequest-responseXML-xml-text-responsetype_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-abort_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-arraybuffer_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-document_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-set-at-headers-received_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-text_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LayoutTests/fast/xsl/xslt-bad-import-uri_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Completer/Completer.sync_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Completer/completeError_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Completer/completeError_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Completer/completeError_A01_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Completer/completeError_A01_t04: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Completer/completeError_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Completer/completeError_A03_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Completer/completeError_A03_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Completer/complete_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Completer/complete_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Completer/complete_A01_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Completer/complete_A01_t04: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Completer/complete_A01_t05: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Completer/complete_A01_t06: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Completer/complete_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Completer/complete_A02_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Completer/isCompleted_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/DeferredLibrary/DeferredLibrary_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/Future.delayed_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/Future.delayed_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/Future.delayed_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/Future.delayed_A03_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/Future.error_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/Future.error_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/Future.microtask_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/Future.microtask_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/Future.microtask_A01_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/Future.microtask_A01_t04: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/Future.sync_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/Future.sync_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/Future.sync_A01_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/Future.sync_A01_t04: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/Future.value_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/Future.value_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/Future_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/Future_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/Future_A01_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/Future_A01_t04: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/asStream_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/asStream_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/asStream_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/asStream_A02_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/catchError_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/catchError_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/catchError_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/catchError_A03_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/catchError_A03_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/catchError_A03_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/catchError_A03_t04: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/catchError_A03_t05: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/forEach_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/forEach_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/forEach_A03_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/then_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/then_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/then_A01_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/then_A01_t04: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/then_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/then_A03_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/then_A03_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/then_A04_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/then_A05_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/then_A05_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/then_A05_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/wait_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/wait_A01_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/wait_A01_t04: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/wait_A01_t05: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/wait_A01_t06: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/wait_A01_t07: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/wait_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/wait_A02_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/whenComplete_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/whenComplete_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/whenComplete_A03_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/whenComplete_A04_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Future/whenComplete_A04_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/Stream.eventTransformed_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/Stream.eventTransformed_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/Stream.fromFuture_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/Stream.fromFuture_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/Stream.fromFuture_A02_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/Stream.fromIterable_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/Stream.fromIterable_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/Stream.fromIterable_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +LibTest/async/Completer/Completer.sync_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Completer/completeError_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Completer/completeError_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Completer/completeError_A01_t03: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Completer/completeError_A01_t04: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Completer/completeError_A03_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Completer/completeError_A03_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Completer/complete_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Completer/complete_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Completer/complete_A01_t03: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Completer/complete_A01_t04: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Completer/complete_A01_t05: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Completer/complete_A01_t06: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Completer/complete_A02_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Completer/complete_A02_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Completer/isCompleted_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/DeferredLibrary/DeferredLibrary_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/Future.delayed_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/Future.delayed_A02_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/Future.delayed_A03_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/Future.error_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/Future.microtask_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/Future.microtask_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/Future.microtask_A01_t03: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/Future.microtask_A01_t04: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/Future.sync_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/Future.sync_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/Future.sync_A01_t03: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/Future.sync_A01_t04: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/Future.value_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/Future.value_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/Future_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/Future_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/Future_A01_t03: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/Future_A01_t04: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/asStream_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/asStream_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/asStream_A02_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/asStream_A02_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/catchError_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/catchError_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/catchError_A02_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/catchError_A03_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/catchError_A03_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/catchError_A03_t03: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/catchError_A03_t04: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/catchError_A03_t05: RuntimeError # receiver.get$_nums is not a function +LibTest/async/Future/forEach_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/forEach_A02_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/forEach_A03_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/then_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/then_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/then_A01_t03: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/then_A01_t04: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/then_A02_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/then_A03_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/then_A03_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/then_A04_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/then_A05_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/async/Future/then_A05_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/then_A05_t03: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/wait_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/wait_A01_t03: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/wait_A01_t04: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/wait_A01_t05: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/wait_A01_t06: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/wait_A01_t07: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/wait_A02_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/wait_A02_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/whenComplete_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/whenComplete_A02_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/whenComplete_A03_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/whenComplete_A04_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Future/whenComplete_A04_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/Stream.eventTransformed_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/Stream.eventTransformed_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/Stream.fromFuture_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/Stream.fromFuture_A02_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/Stream.fromFuture_A02_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/Stream.fromIterable_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/Stream.fromIterable_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/Stream.fromIterable_A02_t01: RuntimeError # receiver.get$_collection$_nums is not a function LibTest/async/Stream/Stream.periodic_A01_t01: Crash # Invalid argument(s) -LibTest/async/Stream/Stream.periodic_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/Stream.periodic_A03_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/Stream_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/any_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/any_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/any_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/asBroadcastStream_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/asBroadcastStream_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/asBroadcastStream_A01_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/asBroadcastStream_A01_t04: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/asBroadcastStream_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/asBroadcastStream_A03_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/asBroadcastStream_A03_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/asBroadcastStream_A03_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/asBroadcastStream_A04_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/asBroadcastStream_A04_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/asBroadcastStream_A04_t03: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/contains_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/contains_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/contains_A03_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/distinct_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/distinct_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/drain_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +LibTest/async/Stream/Stream.periodic_A02_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/Stream.periodic_A03_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/Stream_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/any_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/any_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/any_A02_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/asBroadcastStream_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/asBroadcastStream_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/asBroadcastStream_A01_t03: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/asBroadcastStream_A01_t04: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/asBroadcastStream_A03_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/asBroadcastStream_A03_t02: RuntimeError # receiver.get$_nums is not a function +LibTest/async/Stream/asBroadcastStream_A03_t03: RuntimeError # receiver.get$_nums is not a function +LibTest/async/Stream/asBroadcastStream_A04_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/asBroadcastStream_A04_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/asBroadcastStream_A04_t03: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/contains_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/contains_A02_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/contains_A03_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/distinct_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/distinct_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/drain_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function LibTest/async/Stream/drain_A02_t01: Crash # Invalid argument(s) -LibTest/async/Stream/drain_A02_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/elementAt_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/elementAt_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/elementAt_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/elementAt_A03_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/every_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/every_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/expand_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/firstWhere_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/firstWhere_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/firstWhere_A03_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/firstWhere_A03_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/first_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/first_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/first_A02_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/first_A03_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/fold_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/fold_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/forEach_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/forEach_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/forEach_A02_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/handleError_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/handleError_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/handleError_A03_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/handleError_A04_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/handleError_A04_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/handleError_A04_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/isBroadcast_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/isBroadcast_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/isEmpty_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/join_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/join_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/join_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/join_A02_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/lastWhere_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/lastWhere_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/lastWhere_A03_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/lastWhere_A04_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/last_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/last_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/last_A03_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/length_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/listen_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/listen_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/listen_A03_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/listen_A04_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/listen_A05_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/listen_A05_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/listen_A05_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/listen_A06_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/map_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/pipe_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/reduce_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/reduce_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/reduce_A01_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/singleWhere_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/singleWhere_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/single_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/single_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/skipWhile_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/skip_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/takeWhile_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/take_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/take_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/take_A01_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/toList_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/toSet_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/transform_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/transform_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/where_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Stream/where_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/StreamController.broadcast_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/StreamController.broadcast_A03_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/StreamController.broadcast_A04_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/StreamController.broadcast_A05_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/StreamController.broadcast_A06_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/StreamController.broadcast_A07_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/StreamController.broadcast_A07_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/StreamController.broadcast_A08_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/StreamController_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/StreamController_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/StreamController_A03_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/StreamController_A04_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/StreamController_A05_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/StreamController_A06_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/StreamController_A06_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/addError_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/addError_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/addStream_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/addStream_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/addStream_A02_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/addStream_A03_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/addStream_A03_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/add_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/close_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/close_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/done_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/done_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/done_A01_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/hasListener_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/hasListener_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/isClosed_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/isClosed_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/isPaused_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/isPaused_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/isPaused_A01_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/sink_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamController/stream_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamIterator/StreamIterator_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamIterator/cancel_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamIterator/current_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamIterator/moveNext_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamIterator/moveNext_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamSink/addError_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamSink/addStream_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamSink/addStream_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamSink/addStream_A01_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamSink/addStream_A01_t04: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamSink/addStream_A01_t05: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamSink/add_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamSink/close_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamSink/done_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamTransformer/StreamTransformer.fromHandlers_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamTransformer/StreamTransformer.fromHandlers_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamTransformer/StreamTransformer.fromHandlers_A01_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamTransformer/StreamTransformer.fromHandlers_A01_t04: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamTransformer/StreamTransformer_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamTransformer/StreamTransformer_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamTransformer/StreamTransformer_A01_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamTransformer/StreamTransformer_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamTransformer/StreamTransformer_A02_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamTransformer/StreamTransformer_A03_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamTransformer/StreamTransformer_A03_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/StreamTransformer/bind_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Timer/Timer.periodic_A01_t01: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -LibTest/async/Timer/Timer.periodic_A02_t01: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -LibTest/async/Timer/Timer_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Timer/Timer_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Timer/cancel_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Timer/isActive_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Timer/isActive_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Timer/run_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Timer/run_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Zone/bindBinaryCallback_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Zone/bindBinaryCallback_A01_t02: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -LibTest/async/Zone/bindCallback_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Zone/bindCallback_A01_t02: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -LibTest/async/Zone/bindUnaryCallback_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Zone/bindUnaryCallback_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Zone/createPeriodicTimer_A01_t01: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -LibTest/async/Zone/createTimer_A01_t01: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -LibTest/async/Zone/current_A01_t01: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -LibTest/async/Zone/current_A01_t02: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -LibTest/async/Zone/fork_A01_t01: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -LibTest/async/Zone/handleUncaughtError_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Zone/handleUncaughtError_A01_t02: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -LibTest/async/Zone/handleUncaughtError_A01_t03: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -LibTest/async/Zone/handleUncaughtError_A01_t04: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Zone/inSameErrorZone_A01_t01: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -LibTest/async/Zone/inSameErrorZone_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Zone/inSameErrorZone_A01_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Zone/inSameErrorZone_A01_t04: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Zone/inSameErrorZone_A01_t05: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Zone/operator_subscript_A01_t01: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -LibTest/async/Zone/parent_A01_t01: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -LibTest/async/Zone/registerBinaryCallback_A01_t01: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -LibTest/async/Zone/registerCallback_A01_t01: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -LibTest/async/Zone/registerUnaryCallback_A01_t01: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -LibTest/async/Zone/runBinaryGuarded_A01_t01: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -LibTest/async/Zone/runBinary_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Zone/runGuarded_A01_t01: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -LibTest/async/Zone/runUnaryGuarded_A01_t01: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -LibTest/async/Zone/runUnary_A01_t01: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -LibTest/async/Zone/run_A01_t01: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -LibTest/async/Zone/scheduleMicrotask_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/async/Zone/scheduleMicrotask_A01_t02: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally +LibTest/async/Stream/drain_A02_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/elementAt_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/elementAt_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/elementAt_A02_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/elementAt_A03_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/every_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/every_A02_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/expand_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/firstWhere_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/firstWhere_A02_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/firstWhere_A03_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/firstWhere_A03_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/first_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/first_A02_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/first_A02_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/first_A03_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/fold_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/fold_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/forEach_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/forEach_A02_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/forEach_A02_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/handleError_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/handleError_A02_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/handleError_A03_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/handleError_A04_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/handleError_A04_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/handleError_A04_t03: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/isBroadcast_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/isBroadcast_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/isEmpty_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/join_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/join_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/join_A02_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/join_A02_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/lastWhere_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/lastWhere_A02_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/lastWhere_A03_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/lastWhere_A04_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/last_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/last_A02_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/last_A03_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/length_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/listen_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/listen_A02_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/listen_A03_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/listen_A04_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/listen_A05_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/listen_A05_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/listen_A05_t03: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/listen_A06_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/map_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/pipe_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/reduce_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/reduce_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/reduce_A01_t03: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/singleWhere_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/singleWhere_A02_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/single_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/single_A02_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/skipWhile_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/skip_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/takeWhile_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/take_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/take_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/take_A01_t03: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/toList_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/toSet_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/async/Stream/transform_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/transform_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Stream/where_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/async/Stream/where_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/StreamController.broadcast_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/StreamController.broadcast_A03_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/StreamController.broadcast_A04_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/StreamController.broadcast_A05_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/StreamController.broadcast_A06_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/StreamController.broadcast_A07_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/StreamController.broadcast_A07_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/StreamController.broadcast_A08_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/StreamController_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/StreamController_A02_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/StreamController_A03_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/StreamController_A04_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/StreamController_A05_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/StreamController_A06_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/StreamController_A06_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/addError_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/addError_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/addStream_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/addStream_A02_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/addStream_A02_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/addStream_A03_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/addStream_A03_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/add_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/close_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/close_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/done_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/done_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/done_A01_t03: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/hasListener_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/hasListener_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/isClosed_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/isClosed_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/isPaused_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/isPaused_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/isPaused_A01_t03: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/sink_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamController/stream_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamIterator/StreamIterator_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamIterator/cancel_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamIterator/current_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamIterator/moveNext_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamIterator/moveNext_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamSink/addError_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamSink/addStream_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamSink/addStream_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamSink/addStream_A01_t03: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamSink/addStream_A01_t04: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamSink/addStream_A01_t05: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamSink/add_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamSink/close_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamSink/done_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamTransformer/StreamTransformer.fromHandlers_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamTransformer/StreamTransformer.fromHandlers_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamTransformer/StreamTransformer.fromHandlers_A01_t03: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamTransformer/StreamTransformer.fromHandlers_A01_t04: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamTransformer/StreamTransformer_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamTransformer/StreamTransformer_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamTransformer/StreamTransformer_A01_t03: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamTransformer/StreamTransformer_A02_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamTransformer/StreamTransformer_A02_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamTransformer/StreamTransformer_A03_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamTransformer/StreamTransformer_A03_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/StreamTransformer/bind_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Timer/Timer.periodic_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Timer/Timer.periodic_A02_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Timer/Timer_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Timer/Timer_A02_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Timer/cancel_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Timer/isActive_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Timer/isActive_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Timer/run_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Timer/run_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Zone/bindBinaryCallback_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/async/Zone/bindBinaryCallback_A01_t02: RuntimeError # receiver.get$_nums is not a function +LibTest/async/Zone/bindCallback_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/async/Zone/bindCallback_A01_t02: RuntimeError # receiver.get$_nums is not a function +LibTest/async/Zone/bindUnaryCallback_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/async/Zone/bindUnaryCallback_A01_t02: RuntimeError # receiver.get$_nums is not a function +LibTest/async/Zone/createPeriodicTimer_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/async/Zone/createTimer_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/async/Zone/current_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/async/Zone/current_A01_t02: RuntimeError # receiver.get$_nums is not a function +LibTest/async/Zone/fork_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/async/Zone/handleUncaughtError_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/async/Zone/handleUncaughtError_A01_t02: RuntimeError # receiver.get$_nums is not a function +LibTest/async/Zone/handleUncaughtError_A01_t03: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Zone/handleUncaughtError_A01_t04: RuntimeError # receiver.get$_nums is not a function +LibTest/async/Zone/inSameErrorZone_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/async/Zone/inSameErrorZone_A01_t02: RuntimeError # receiver.get$_nums is not a function +LibTest/async/Zone/inSameErrorZone_A01_t03: RuntimeError # receiver.get$_nums is not a function +LibTest/async/Zone/inSameErrorZone_A01_t04: RuntimeError # receiver.get$_nums is not a function +LibTest/async/Zone/inSameErrorZone_A01_t05: RuntimeError # receiver.get$_nums is not a function +LibTest/async/Zone/operator_subscript_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Zone/parent_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/async/Zone/registerBinaryCallback_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/async/Zone/registerCallback_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/async/Zone/registerUnaryCallback_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/async/Zone/runBinaryGuarded_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/async/Zone/runBinary_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/async/Zone/runGuarded_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/async/Zone/runUnaryGuarded_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/async/Zone/runUnary_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/async/Zone/run_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/async/Zone/scheduleMicrotask_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/async/Zone/scheduleMicrotask_A01_t02: RuntimeError # receiver.get$_nums is not a function LibTest/collection/DoubleLinkedQueue/DoubleLinkedQueue_class_A01_t01: RuntimeError # Please triage this failure. LibTest/collection/DoubleLinkedQueue/every_A01_t01: RuntimeError # Please triage this failure. LibTest/collection/DoubleLinkedQueue/expand_A01_t02: RuntimeError # Please triage this failure. @@ -10696,19 +10085,19 @@ LibTest/core/Set/IterableBase_A01_t01: RuntimeError # Please triage this failure LibTest/core/Set/Set.from_A01_t01: RuntimeError # Please triage this failure. LibTest/core/Set/forEach_A01_t01: RuntimeError # Please triage this failure. LibTest/core/Stopwatch/Stopwatch_A01_t01: RuntimeError # Cannot read property 'prototype' of undefined -LibTest/core/Stopwatch/elapsedInMs_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/core/Stopwatch/elapsedInUs_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/core/Stopwatch/elapsedTicks_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/core/Stopwatch/elapsedTicks_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/core/Stopwatch/elapsedTicks_A01_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/core/Stopwatch/elapsed_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/core/Stopwatch/elapsed_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/core/Stopwatch/elapsed_A01_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +LibTest/core/Stopwatch/elapsedInMs_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/core/Stopwatch/elapsedInUs_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/core/Stopwatch/elapsedTicks_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/core/Stopwatch/elapsedTicks_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/core/Stopwatch/elapsedTicks_A01_t03: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/core/Stopwatch/elapsed_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/core/Stopwatch/elapsed_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/core/Stopwatch/elapsed_A01_t03: RuntimeError # receiver.get$_collection$_nums is not a function LibTest/core/Stopwatch/frequency_A01_t01: RuntimeError # Cannot read property 'prototype' of undefined -LibTest/core/Stopwatch/start_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/core/Stopwatch/start_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/core/Stopwatch/start_A01_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/core/Stopwatch/stop_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +LibTest/core/Stopwatch/start_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/core/Stopwatch/start_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/core/Stopwatch/start_A01_t03: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/core/Stopwatch/stop_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function LibTest/core/Symbol/Symbol_A01_t03: RuntimeError # Please triage this failure. LibTest/core/Symbol/Symbol_A01_t05: RuntimeError # Please triage this failure. LibTest/core/Uri/Uri.http_A02_t01: RuntimeError # Please triage this failure. @@ -10752,355 +10141,92 @@ LibTest/core/Uri/userInfo_A01_t01: Crash # Invalid argument(s) LibTest/core/double/INFINITY_A01_t04: Pass # Please triage this failure. LibTest/core/double/NEGATIVE_INFINITY_A01_t04: Pass # Please triage this failure. LibTest/core/int/parse_A01_t01: RuntimeError # Cannot read property 'prototype' of undefined -LibTest/html/CanvasRenderingContext2D/addEventListener_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/CanvasRenderingContext2D/addEventListener_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/CanvasRenderingContext2D/addEventListener_A01_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/CanvasRenderingContext2D/addEventListener_A01_t04: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/CanvasRenderingContext2D/addEventListener_A01_t05: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/CanvasRenderingContext2D/addEventListener_A01_t06: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Document/addEventListener_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Document/dispatchEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Document/on_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Document/on_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/abortEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/addEventListener_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/addEventListener_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/addEventListener_A01_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/addEventListener_A01_t04: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/addEventListener_A01_t05: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/addEventListener_A01_t06: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/attributeChanged_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/beforeCopyEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/beforeCutEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/beforePasteEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/blurEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/blur_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/changeEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/clickEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/click_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/contextMenuEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/copyEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/cutEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/doubleClickEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/dragEndEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/dragEnterEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/dragEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/dragLeaveEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/dragOverEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/dragStartEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/dropEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/enteredView_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/errorEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/focusEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/focus_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/fullscreenChangeEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/fullscreenErrorEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/inputEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/invalidEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/keyDownEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/keyPressEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/keyUpEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/leftView_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/loadEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/mouseDownEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/mouseEnterEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/mouseLeaveEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/mouseMoveEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/mouseOutEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/mouseOverEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/mouseUpEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/mouseWheelEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onAbort_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onBeforeCopy_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onBeforeCut_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onBeforePaste_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onBlur_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onChange_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onClick_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onContextMenu_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onCopy_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onCut_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onDoubleClick_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onDragEnd_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onDragEnter_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onDragLeave_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onDragOver_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onDragStart_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onDrag_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onDrop_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onError_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onFocus_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onFullscreenChange_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onFullscreenError_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onInput_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onInvalid_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onKeyDown_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onKeyPress_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onKeyUp_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onLoad_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onMouseDown_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onMouseEnter_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onMouseLeave_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onMouseMove_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onMouseOut_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onMouseOver_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onMouseUp_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onMouseWheel_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onPaste_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onReset_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onScroll_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onSearch_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onSelectStart_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onSelect_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onSubmit_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onTouchCancel_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onTouchEnd_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onTouchEnter_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onTouchLeave_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onTouchMove_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onTouchStart_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/onTransitionEnd_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/on_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/pasteEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/removeEventListener_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/removeEventListener_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/resetEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/scrollEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/searchEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/selectEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/selectStartEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/submitEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/touchCancelEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/touchEndEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/touchEnterEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/touchLeaveEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/touchMoveEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/touchStartEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Element/transitionEndEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Event/Event_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Event/Event_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Event/Event_A01_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Event/Event_A01_t04: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Event/currentTarget_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Event/defaultPrevented_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Event/eventPhase_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Event/matchingTarget_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Event/matchingTarget_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Event/preventDefault_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Event/stopImmediatePropagation_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Event/stopImmediatePropagation_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Event/stopPropagation_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Event/target_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/HttpRequest/addEventListener_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/HttpRequest/dispatchEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/HttpRequest/getAllResponseHeaders_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/HttpRequest/getResponseHeader_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/HttpRequest/getString_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/HttpRequest/onAbort_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/HttpRequest/onError_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/HttpRequest/onLoadEnd_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/HttpRequest/onLoadStart_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/HttpRequest/onLoad_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/HttpRequest/onReadyStateChange_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/HttpRequest/overrideMimeType_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/HttpRequest/readyStateChangeEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/HttpRequest/request_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/HttpRequest/responseText_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/HttpRequest/responseText_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/HttpRequest/setRequestHeader_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/HttpRequest/statusText_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/HttpRequest/status_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/HttpRequestUpload/onAbort_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/HttpRequestUpload/onError_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/HttpRequestUpload/onLoadEnd_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/HttpRequestUpload/onLoadStart_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/HttpRequestUpload/onLoad_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/addEventListener_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/addEventListener_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/addEventListener_A01_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/addEventListener_A01_t04: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/addEventListener_A01_t05: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/addEventListener_A01_t06: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/blur_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/click_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/contentWindow_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/dispatchEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/focus_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/leftView_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onAbort_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onBeforeCopy_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onBeforeCut_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onBeforePaste_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onBlur_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onChange_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onClick_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onContextMenu_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onCopy_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onCut_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onDoubleClick_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onDragEnd_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onDragEnter_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onDragLeave_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onDragOver_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onDragStart_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onDrag_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onDrop_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onError_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onFocus_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onFullscreenChange_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onFullscreenError_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onInput_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onInvalid_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onKeyDown_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onKeyPress_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onKeyUp_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onLoad_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onMouseDown_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onMouseEnter_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onMouseLeave_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onMouseMove_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onMouseOut_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onMouseOver_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onMouseUp_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onMouseWheel_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onPaste_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onReset_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onScroll_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onSearch_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onSelectStart_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onSelect_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onSubmit_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onTouchCancel_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onTouchEnd_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onTouchEnter_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onTouchLeave_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onTouchMove_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onTouchStart_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/onTransitionEnd_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/on_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/removeEventListener_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/removeEventListener_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/resetEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/scrollEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/searchEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/selectEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/IFrameElement/selectStartEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Node/addEventListener_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Node/addEventListener_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Node/addEventListener_A01_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Node/addEventListener_A01_t04: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Node/addEventListener_A01_t05: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Node/dispatchEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Node/on_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Node/removeEventListener_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Node/removeEventListener_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Window/addEventListener_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Window/animationFrame_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Window/dispatchEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Window/moveBy_A01_t01: Crash # (try {check(nw,0,0);... try/finally -LibTest/html/Window/moveTo_A01_t01: Crash # (try {check(nw,0,0);... try/finally -LibTest/html/Window/moveTo_A02_t01: Crash # (try {print("from ${... try/finally -LibTest/html/Window/postMessage_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Window/postMessage_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Window/requestFileSystem_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Window/requestFileSystem_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Window/requestFileSystem_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/html/Window/resizeBy_A01_t01: Crash # (try {check(nw,0,0);... try/finally -LibTest/html/Window/resizeTo_A01_t01: Crash # (try {check(nw,0,0);... try/finally -LibTest/isolate/Isolate/spawnUri_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/Isolate/spawnUri_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/Isolate/spawnUri_A01_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/Isolate/spawnUri_A01_t04: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/Isolate/spawnUri_A01_t05: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/Isolate/spawnUri_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/Isolate/spawnUri_A02_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/Isolate/spawnUri_A02_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/Isolate/spawnUri_A02_t04: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/Isolate/spawn_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/Isolate/spawn_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/Isolate/spawn_A01_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/Isolate/spawn_A01_t04: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/Isolate/spawn_A01_t05: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/Isolate/spawn_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/Isolate/spawn_A02_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/RawReceivePort/RawReceivePort_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/RawReceivePort/RawReceivePort_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/RawReceivePort/close_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/RawReceivePort/handler_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/RawReceivePort/sendPort_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/ReceivePort.fromRawReceivePort_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/ReceivePort.fromRawReceivePort_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/ReceivePort_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/any_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/any_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/asBroadcastStream_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/asBroadcastStream_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/asBroadcastStream_A01_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/asBroadcastStream_A01_t04: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/asBroadcastStream_A03_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/asBroadcastStream_A03_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/asBroadcastStream_A03_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/asBroadcastStream_A04_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/asBroadcastStream_A04_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/asBroadcastStream_A04_t03: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/close_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/close_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/contains_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/distinct_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/distinct_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +LibTest/isolate/Isolate/spawnUri_A02_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/isolate/Isolate/spawnUri_A02_t03: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/isolate/Isolate/spawnUri_A02_t04: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/isolate/Isolate/spawn_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/isolate/Isolate/spawn_A01_t02: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/Isolate/spawn_A01_t03: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/Isolate/spawn_A01_t04: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/Isolate/spawn_A01_t05: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/Isolate/spawn_A02_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/RawReceivePort/RawReceivePort_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/isolate/RawReceivePort/RawReceivePort_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/isolate/RawReceivePort/close_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/isolate/RawReceivePort/handler_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/isolate/RawReceivePort/sendPort_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/isolate/ReceivePort/ReceivePort.fromRawReceivePort_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/isolate/ReceivePort/ReceivePort.fromRawReceivePort_A02_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/isolate/ReceivePort/ReceivePort_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/isolate/ReceivePort/any_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/any_A01_t02: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/asBroadcastStream_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/isolate/ReceivePort/asBroadcastStream_A01_t02: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/asBroadcastStream_A01_t03: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/asBroadcastStream_A01_t04: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/asBroadcastStream_A03_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/asBroadcastStream_A03_t02: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/asBroadcastStream_A03_t03: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/asBroadcastStream_A04_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/asBroadcastStream_A04_t02: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/asBroadcastStream_A04_t03: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/isolate/ReceivePort/close_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/isolate/ReceivePort/close_A02_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/isolate/ReceivePort/contains_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/distinct_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/distinct_A01_t02: RuntimeError # receiver.get$_nums is not a function LibTest/isolate/ReceivePort/drain_A02_t01: Crash # Invalid argument(s) -LibTest/isolate/ReceivePort/drain_A02_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/elementAt_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/elementAt_A03_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/every_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/expand_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/firstWhere_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/firstWhere_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/firstWhere_A03_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/first_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/first_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/first_A02_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/fold_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/fold_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/forEach_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/isBroadcast_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/isBroadcast_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/isEmpty_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/join_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/join_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/lastWhere_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/lastWhere_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/lastWhere_A04_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/last_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/last_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/length_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/listen_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/map_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/pipe_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/reduce_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/reduce_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/reduce_A01_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/sendPort_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/singleWhere_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/singleWhere_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/single_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/single_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/skipWhile_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/skip_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/takeWhile_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/take_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/take_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/take_A01_t03: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/toList_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/toSet_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/transform_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/transform_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/where_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/ReceivePort/where_A01_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/SendPort/hashCode_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/SendPort/operator_equality_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/SendPort/send_A01_t04: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -LibTest/isolate/SendPort/send_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +LibTest/isolate/ReceivePort/drain_A02_t02: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/elementAt_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/elementAt_A03_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/every_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/expand_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/isolate/ReceivePort/firstWhere_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/firstWhere_A02_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/firstWhere_A03_t02: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/first_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/first_A02_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/first_A02_t02: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/fold_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/fold_A01_t02: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/forEach_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/isolate/ReceivePort/isBroadcast_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/isolate/ReceivePort/isBroadcast_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/isolate/ReceivePort/isEmpty_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/join_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/join_A01_t02: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/lastWhere_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/isolate/ReceivePort/lastWhere_A02_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/lastWhere_A04_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/last_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/last_A02_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/length_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/listen_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/isolate/ReceivePort/map_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/isolate/ReceivePort/pipe_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/isolate/ReceivePort/reduce_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/reduce_A01_t02: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/reduce_A01_t03: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/singleWhere_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/singleWhere_A02_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/single_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/single_A02_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/skipWhile_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/skip_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/isolate/ReceivePort/takeWhile_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/take_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/isolate/ReceivePort/take_A01_t02: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/take_A01_t03: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/toList_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/isolate/ReceivePort/toSet_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/transform_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/isolate/ReceivePort/transform_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/isolate/ReceivePort/where_A01_t01: RuntimeError # receiver.get$_nums is not a function +LibTest/isolate/ReceivePort/where_A01_t02: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/isolate/SendPort/hashCode_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/isolate/SendPort/operator_equality_A01_t01: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/isolate/SendPort/send_A01_t04: RuntimeError # receiver.get$_collection$_nums is not a function +LibTest/isolate/SendPort/send_A02_t01: RuntimeError # receiver.get$_collection$_nums is not a function LibTest/math/atan2_A01_t01: RuntimeError # Please triage this failure. LibTest/math/exp_A01_t01: RuntimeError # Please triage this failure. LibTest/math/log_A01_t01: RuntimeError # Please triage this failure. @@ -11228,64 +10354,3 @@ LibTest/typed_data/Uint8List/toList_A02_t01: RuntimeError # Please triage this f LibTest/typed_data/Uint8List/toList_A02_t02: RuntimeError # Please triage this failure. Utils/tests/Expect/setEquals_A01_t01: RuntimeError # Please triage this failure. Utils/tests/Expect/setEquals_A01_t02: RuntimeError # Please triage this failure. -WebPlatformTest/DOMEvents/approved/EventListener.eventHandler_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/DOMEvents/approved/ProcessingInstruction.DOMCharacterDataModified_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/DOMEvents/approved/domnodeinserted_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/Utils/test/asyncTestFail_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/Utils/test/asyncTestFail_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/Utils/test/asyncTestPass_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/dom/EventTarget/dispatchEvent_A01_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/dom/EventTarget/dispatchEvent_A02_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/dom/EventTarget/dispatchEvent_A03_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/dom/EventTarget/dispatchEvent_A04_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/dom/nodes/Comment-constructor_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/dom/nodes/Node-isEqualNode_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/dom/nodes/Node-parentNode_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/html-imports/link-import_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/html/browsers/browsing-the-web/read-media/pageload-image_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/html/browsers/browsing-the-web/read-media/pageload-video_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/html/browsers/browsing-the-web/read-text/load-text-plain_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/html/semantics/embedded-content/media-elements/error-codes/error_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/html/semantics/embedded-content/media-elements/interfaces/TextTrack/cues_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/html/semantics/forms/textfieldselection/textfieldselection-setRangeText_t01: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/html/semantics/forms/the-form-element/form-nameditem_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/html/semantics/interactive-elements/the-details-element/toggleEvent_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/shadow-dom/elements-and-dom-objects/extensions-to-event-interface/event-path-001_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/shadow-dom/events/event-dispatch/test-001_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/shadow-dom/events/event-dispatch/test-002_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/shadow-dom/events/event-dispatch/test-003_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/shadow-dom/events/event-retargeting/test-001_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/shadow-dom/events/event-retargeting/test-002_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/shadow-dom/events/event-retargeting/test-003_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/shadow-dom/events/event-retargeting/test-004_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-001_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-002_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-003_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-004_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-005_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-006_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-007_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-008_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/shadow-dom/events/events-that-are-always-stopped/test-009_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t05: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-001_t06: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-002_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/shadow-dom/events/retargeting-focus-events/test-003_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/shadow-dom/events/retargeting-relatedtarget/test-001_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/shadow-dom/events/retargeting-relatedtarget/test-002_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/webstorage/event_constructor_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/webstorage/event_constructor_t02: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/webstorage/event_local_key_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/webstorage/event_local_newvalue_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/webstorage/event_local_oldvalue_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/webstorage/event_local_storagearea_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/webstorage/event_local_storageeventinit_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/webstorage/event_local_url_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/webstorage/event_session_key_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/webstorage/event_session_newvalue_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/webstorage/event_session_oldvalue_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/webstorage/event_session_storagearea_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/webstorage/event_session_storageeventinit_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -WebPlatformTest/webstorage/event_session_url_t01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally diff --git a/tests/compiler/dart2js_extra/dart2js_extra.status b/tests/compiler/dart2js_extra/dart2js_extra.status index 26bea697327..2399b1565a7 100644 --- a/tests/compiler/dart2js_extra/dart2js_extra.status +++ b/tests/compiler/dart2js_extra/dart2js_extra.status @@ -71,15 +71,15 @@ deferred_fail_and_retry_worker_test: SkipByDesign # Uses eval to simulate failed 19191_test: RuntimeError # Please triage this failure. 21166_test: RuntimeError # Please triage this failure. 21579_test: RuntimeError # Please triage this failure. -21666_test: Crash # Issue 23692 +21666_test: Crash # Internal Error: No default constructor available. 22487_test: RuntimeError # Cannot read property 'prototype' of undefined 22868_test: Crash # (main()async{var clo... cannot handle async/sync*/async* functions 22895_test: Crash # (main()async{var clo... cannot handle async/sync*/async* functions 23404_test: RuntimeError # Cannot read property 'prototype' of undefined -23432_test : RuntimeError # noSuchMethod captures interceptor instead of actual receiver +23432_test: RuntimeError # Please triage this failure. LayoutTests_fast_mediastream_getusermedia_t01_test/none: RuntimeError # Cannot read property 'prototype' of undefined -async_stacktrace_test/asyncStar: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async_stacktrace_test/none: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +async_stacktrace_test/asyncStar: Crash # (runTests()async{awa... cannot handle async/sync*/async* functions +async_stacktrace_test/none: Crash # (runTests()async{awa... cannot handle async/sync*/async* functions bounds_check_test/none: RuntimeError # Please triage this failure. closure5_test: RuntimeError # Cannot read property 'prototype' of undefined closure_capture4_test: RuntimeError # Please triage this failure. @@ -89,17 +89,17 @@ closure_type_reflection_test: Crash # Internal Error: No default constructor ava compound_operator_index_test: RuntimeError # Please triage this failure. conditional_send_test: RuntimeError # receiver.get$_collection$_nums is not a function conflict_index_test: RuntimeError # Please triage this failure. -deferred/deferred_class_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -deferred/deferred_constant2_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -deferred/deferred_constant3_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -deferred/deferred_constant4_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -deferred/deferred_function_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -deferred/deferred_mirrors1_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +deferred/deferred_class_test: RuntimeError # receiver.get$_collection$_nums is not a function +deferred/deferred_constant2_test: RuntimeError # receiver.get$_collection$_nums is not a function +deferred/deferred_constant3_test: RuntimeError # receiver.get$_collection$_nums is not a function +deferred/deferred_constant4_test: RuntimeError # receiver.get$_collection$_nums is not a function +deferred/deferred_function_test: RuntimeError # receiver.get$_collection$_nums is not a function +deferred/deferred_mirrors1_test: RuntimeError # receiver.get$_collection$_nums is not a function deferred/deferred_mirrors2_test: Crash # Internal Error: No default constructor available. deferred/deferred_overlapping_test: RuntimeError # receiver.get$_collection$_nums is not a function -deferred_fail_and_retry_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -deferred_fail_and_retry_worker_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -for_test : RuntimeError # Issue #23701 (Bug in assignment propagation) +deferred_fail_and_retry_test: Crash # Internal Error: No default constructor available. +deferred_fail_and_retry_worker_test: Crash # Internal Error: No default constructor available. +for_test: RuntimeError # Please triage this failure. if_null_test: RuntimeError # receiver.get$_collection$_nums is not a function index_test: RuntimeError # Please triage this failure. int_index_test/none: RuntimeError # Please triage this failure. @@ -112,16 +112,16 @@ mirror_invalid_field_access4_test: RuntimeError # Please triage this failure. mirror_invalid_field_access_test: Crash # Internal Error: No default constructor available. mirror_invalid_invoke3_test: Crash # Internal Error: No default constructor available. mirror_invalid_invoke_test: Crash # Internal Error: No default constructor available. -mirror_printer_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +mirror_printer_test: Crash # Internal Error: No default constructor available. mirror_test: Crash # Internal Error: No default constructor available. mirror_type_inference_field2_test: Crash # Internal Error: No default constructor available. mirror_type_inference_field_test: Crash # Internal Error: No default constructor available. mirror_type_inference_function_test: Crash # Internal Error: No default constructor available. mirrors_declarations_filtering_test: Crash # Internal Error: No default constructor available. mirrors_used_native_test: RuntimeError # Please triage this failure. -mirrors_used_warning2_test: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -mirrors_used_warning_test/minif: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -mirrors_used_warning_test/none: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +mirrors_used_warning2_test: RuntimeError # receiver.get$_nums is not a function +mirrors_used_warning_test/minif: RuntimeError # receiver.get$_nums is not a function +mirrors_used_warning_test/none: RuntimeError # receiver.get$_nums is not a function no_such_method_mirrors_test: RuntimeError # Please triage this failure. reflect_native_types_test: Crash # Internal Error: No default constructor available. runtime_type_test: RuntimeError # Cannot read property 'prototype' of undefined diff --git a/tests/compiler/dart2js_native/dart2js_native.status b/tests/compiler/dart2js_native/dart2js_native.status index fc8e19a4270..9798091d3d8 100644 --- a/tests/compiler/dart2js_native/dart2js_native.status +++ b/tests/compiler/dart2js_native/dart2js_native.status @@ -22,22 +22,21 @@ compute_this_script_test: Skip # Issue 17458 [ $compiler == dart2js && $cps_ir ] compute_this_script_test: RuntimeError # receiver.get$_collection$_nums is not a function -event_loop_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +event_loop_test: RuntimeError # receiver.get$_collection$_nums is not a function inference_of_helper_methods_test: RuntimeError # Please triage this failure. internal_library_test: RuntimeError # receiver.get$_collection$_nums is not a function -mirror_intercepted_field_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +mirror_intercepted_field_test: Crash # Internal Error: No default constructor available. native_closure_identity_frog_test: RuntimeError # invoke is not a function native_exception2_test: RuntimeError # Please triage this failure. native_exception_test: RuntimeError # J.getInterceptor(...).toString$0 is not a function native_method_inlining_test: RuntimeError # Please triage this failure. -native_mirror_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +native_mirror_test: Crash # Internal Error: No default constructor available. native_mixin_field_test: RuntimeError # Please triage this failure. native_mixin_with_plain_test: RuntimeError # Please triage this failure. native_no_such_method_exception3_frog_test: RuntimeError # Please triage this failure. native_wrapping_function3_frog_test: RuntimeError # invoke is not a function native_wrapping_function_frog_test: RuntimeError # invoke is not a function optimization_hints_test: RuntimeError # Please triage this failure. -rti_only_native_test: Crash # (try {map.values.for... try/finally static_methods_test: RuntimeError # invoke is not a function subclassing_constructor_1_test: RuntimeError # Please triage this failure. subclassing_constructor_2_test: RuntimeError # Please triage this failure. diff --git a/tests/corelib/corelib.status b/tests/corelib/corelib.status index bacd0a26889..b9428c1c94f 100644 --- a/tests/corelib/corelib.status +++ b/tests/corelib/corelib.status @@ -308,7 +308,7 @@ set_to_string_test: RuntimeError # Please triage this failure. shuffle_test: RuntimeError # Please triage this failure. sort_test: RuntimeError # Please triage this failure. splay_tree_test: RuntimeError # Please triage this failure. -stacktrace_fromstring_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +stacktrace_fromstring_test: RuntimeError # receiver.get$_collection$_nums is not a function stopwatch2_test: RuntimeError # Cannot read property 'prototype' of undefined stopwatch_test: RuntimeError # Cannot read property 'prototype' of undefined string_codeunits_test: RuntimeError # Please triage this failure. diff --git a/tests/html/html.status b/tests/html/html.status index fe7daecdfdc..ae04182857c 100644 --- a/tests/html/html.status +++ b/tests/html/html.status @@ -414,128 +414,128 @@ webgl_1_test: StaticWarning window_nosuchmethod_test: StaticWarning [ $compiler == dart2js && $cps_ir ] -async_spawnuri_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -audiobuffersourcenode_test: Crash # (try {body();}catch ... try/finally -audiocontext_test: Crash # (try {body();}catch ... try/finally +async_spawnuri_test: Crash # Invalid argument(s) +async_test: Crash # Invalid argument(s) +audiobuffersourcenode_test: Crash # (try {body();}catch ... try/catch/finally +audiocontext_test: Crash # (try {body();}catch ... try/catch/finally audioelement_test: Crash # Invalid argument(s) -b_element_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +b_element_test: Crash # Invalid argument(s) blob_constructor_test: Crash # Invalid argument(s) -cache_test: Crash # (try {body();}catch ... try/finally -callbacks_test: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -canvas_pixel_array_type_alias_test: Crash # (try {body();}catch ... try/finally -canvas_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -canvasrenderingcontext2d_test: Crash # (try {body();}catch ... try/finally +cache_test: Crash # (try {body();}catch ... try/catch/finally +callbacks_test: Crash # Invalid argument(s) +canvas_pixel_array_type_alias_test: Crash # (try {body();}catch ... try/catch/finally +canvas_test: Crash # Invalid argument(s) +canvasrenderingcontext2d_test: Crash # (try {body();}catch ... try/catch/finally cdata_test: Crash # Invalid argument(s) client_rect_test: Crash # Invalid argument(s) -cross_domain_iframe_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -crypto_test: Crash # (try {body();}catch ... try/finally +cross_domain_iframe_test: Crash # Invalid argument(s) +crypto_test: Crash # (try {body();}catch ... try/catch/finally css_rule_list_test: Crash # Invalid argument(s) -css_test: Crash # (try {body();}catch ... try/finally +css_test: Crash # (try {body();}catch ... try/catch/finally cssstyledeclaration_test: Crash # Invalid argument(s) -custom/attribute_changed_callback_test: Crash # (try {body();}catch ... try/finally +custom/attribute_changed_callback_test: Crash # (try {body();}catch ... try/catch/finally custom/constructor_calls_created_synchronously_test: Crash # Invalid argument(s) custom/created_callback_test: Crash # Invalid argument(s) custom/document_register_basic_test: Crash # Invalid argument(s) -custom/document_register_type_extensions_test: Crash # (try {body();}catch ... try/finally +custom/document_register_type_extensions_test: Crash # (try {body();}catch ... try/catch/finally custom/element_upgrade_test: Crash # Invalid argument(s) -custom/entered_left_view_test: Crash # (try {body();}catch ... try/finally +custom/entered_left_view_test: Crash # (try {body();}catch ... try/catch/finally custom/js_custom_test: Crash # Invalid argument(s) custom/mirrors_test: Crash # Invalid argument(s) -custom/regress_194523002_test: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -custom_element_method_clash_test: Crash # (try {body();}catch ... try/finally -custom_element_name_clash_test: Crash # (try {body();}catch ... try/finally -custom_elements_23127_test: Crash # (try {body();}catch ... try/finally -custom_elements_test: Crash # (try {body();}catch ... try/finally +custom/regress_194523002_test: Crash # Internal Error: No default constructor available. +custom_element_method_clash_test: Crash # (try {body();}catch ... try/catch/finally +custom_element_name_clash_test: Crash # (try {body();}catch ... try/catch/finally +custom_elements_23127_test: Crash # (try {body();}catch ... try/catch/finally +custom_elements_test: Crash # (try {body();}catch ... try/catch/finally custom_tags_test: Crash # Invalid argument(s) dart_object_local_storage_test: Crash # Invalid argument(s) datalistelement_test: Crash # Invalid argument(s) -document_test: Crash # (try {body();}catch ... try/finally +document_test: Crash # (try {body();}catch ... try/catch/finally documentfragment_test: Crash # Invalid argument(s) dom_constructors_test: Crash # Invalid argument(s) domparser_test: Crash # Invalid argument(s) -element_add_test: Crash # (try {body();}catch ... try/finally -element_animate_test: Crash # (try {body();}catch ... try/finally +element_add_test: Crash # (try {body();}catch ... try/catch/finally +element_animate_test: Crash # (try {body();}catch ... try/catch/finally element_classes_svg_test: Crash # Invalid argument(s) element_classes_test: Crash # Invalid argument(s) element_constructor_1_test: Crash # Invalid argument(s) -element_dimensions_test: Crash # (try {body();}catch ... try/finally -element_offset_test: Crash # (try {body();}catch ... try/finally -element_test: Crash # (try {body();}catch ... try/finally -element_types_constructors1_test: Crash # (try {body();}catch ... try/finally -element_types_constructors2_test: Crash # (try {body();}catch ... try/finally -element_types_constructors3_test: Crash # (try {body();}catch ... try/finally -element_types_constructors4_test: Crash # (try {body();}catch ... try/finally -element_types_constructors5_test: Crash # (try {body();}catch ... try/finally -element_types_constructors6_test: Crash # (try {body();}catch ... try/finally -element_types_test: Crash # (try {body();}catch ... try/finally +element_dimensions_test: Crash # (try {body();}catch ... try/catch/finally +element_offset_test: Crash # (try {body();}catch ... try/catch/finally +element_test: Crash # (try {body();}catch ... try/catch/finally +element_types_constructors1_test: Crash # (try {body();}catch ... try/catch/finally +element_types_constructors2_test: Crash # (try {body();}catch ... try/catch/finally +element_types_constructors3_test: Crash # (try {body();}catch ... try/catch/finally +element_types_constructors4_test: Crash # (try {body();}catch ... try/catch/finally +element_types_constructors5_test: Crash # (try {body();}catch ... try/catch/finally +element_types_constructors6_test: Crash # (try {body();}catch ... try/catch/finally +element_types_test: Crash # (try {body();}catch ... try/catch/finally event_customevent_test: Crash # Invalid argument(s) event_test: Crash # Invalid argument(s) -events_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +events_test: Crash # Invalid argument(s) exceptions_test: Crash # Invalid argument(s) -fileapi_test: Crash # (try {body();}catch ... try/finally -filereader_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +fileapi_test: Crash # (try {body();}catch ... try/catch/finally +filereader_test: Crash # Invalid argument(s) fontface_loaded_test: Crash # Invalid argument(s) fontface_test: Crash # Invalid argument(s) -form_data_test: Crash # (try {body();}catch ... try/finally +form_data_test: Crash # (try {body();}catch ... try/catch/finally form_element_test: Crash # Invalid argument(s) geolocation_test: Crash # Invalid argument(s) hidden_dom_1_test: Crash # Invalid argument(s) hidden_dom_2_test: Crash # Invalid argument(s) -history_test: Crash # (try {body();}catch ... try/finally +history_test: Crash # (try {body();}catch ... try/catch/finally htmlcollection_test: Crash # Invalid argument(s) htmlelement_test: Crash # Invalid argument(s) htmloptionscollection_test: Crash # Invalid argument(s) -indexeddb_1_test: Crash # (try {body();}catch ... try/finally -indexeddb_2_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +indexeddb_1_test: Crash # (try {body();}catch ... try/catch/finally +indexeddb_2_test: Crash # Invalid argument(s) indexeddb_3_test: Crash # Invalid argument(s) indexeddb_4_test: Crash # Invalid argument(s) indexeddb_5_test: Crash # Invalid argument(s) -input_element_test: Crash # (try {body();}catch ... try/finally +input_element_test: Crash # (try {body();}catch ... try/catch/finally instance_of_test: Crash # Invalid argument(s) -isolates_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -js_interop_1_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -js_test: Crash # (try {body();}catch ... try/finally -keyboard_event_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +isolates_test: Crash # Invalid argument(s) +js_interop_1_test: Crash # Invalid argument(s) +js_test: Crash # (try {body();}catch ... try/catch/finally +keyboard_event_test: Crash # Invalid argument(s) localstorage_test: Crash # Invalid argument(s) location_test: Crash # Invalid argument(s) -media_stream_test: Crash # (try {body();}catch ... try/finally -mediasource_test: Crash # (try {body();}catch ... try/finally +media_stream_test: Crash # (try {body();}catch ... try/catch/finally +mediasource_test: Crash # (try {body();}catch ... try/catch/finally messageevent_test: Crash # Invalid argument(s) -mouse_event_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -mutationobserver_test: Crash # (try {body();}catch ... try/finally -native_gc_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +mouse_event_test: Crash # Invalid argument(s) +mutationobserver_test: Crash # (try {body();}catch ... try/catch/finally +native_gc_test: Crash # Invalid argument(s) navigator_test: Crash # Invalid argument(s) -node_test: Crash # (try {body();}catch ... try/finally -node_validator_important_if_you_suppress_make_the_bug_critical_test: Crash # (try {body();}catch ... try/finally +node_test: Crash # (try {body();}catch ... try/catch/finally +node_validator_important_if_you_suppress_make_the_bug_critical_test: Crash # (try {body();}catch ... try/catch/finally non_instantiated_is_test: Crash # Invalid argument(s) -notification_test: Crash # (try {body();}catch ... try/finally -performance_api_test: Crash # (try {body();}catch ... try/finally -postmessage_structured_test: Crash # (try {body();}catch ... try/finally +notification_test: Crash # (try {body();}catch ... try/catch/finally +performance_api_test: Crash # (try {body();}catch ... try/catch/finally +postmessage_structured_test: Crash # (try {body();}catch ... try/catch/finally query_test: Crash # Invalid argument(s) queryall_test: Crash # Invalid argument(s) -range_test: Crash # (try {body();}catch ... try/finally -request_animation_frame_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -rtc_test: Crash # (try {body();}catch ... try/finally +range_test: Crash # (try {body();}catch ... try/catch/finally +request_animation_frame_test: Crash # Invalid argument(s) +rtc_test: Crash # (try {body();}catch ... try/catch/finally selectelement_test: Crash # Invalid argument(s) serialized_script_value_test: Crash # Invalid argument(s) -shadow_dom_test: Crash # (try {body();}catch ... try/finally +shadow_dom_test: Crash # (try {body();}catch ... try/catch/finally shadowroot_test: Crash # Invalid argument(s) -speechrecognition_test: Crash # (try {body();}catch ... try/finally +speechrecognition_test: Crash # (try {body();}catch ... try/catch/finally storage_quota_test/missingenumcheck: Crash # Invalid argument(s) storage_quota_test/none: Crash # Invalid argument(s) storage_test: Crash # Invalid argument(s) streams_test: Crash # Invalid argument(s) -svg_test: Crash # (try {body();}catch ... try/finally -svgelement_test: Crash # (try {body();}catch ... try/finally +svg_test: Crash # (try {body();}catch ... try/catch/finally +svgelement_test: Crash # (try {body();}catch ... try/catch/finally table_test: Crash # Invalid argument(s) text_event_test: Crash # Invalid argument(s) -touchevent_test: Crash # (try {body();}catch ... try/finally -track_element_constructor_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +touchevent_test: Crash # (try {body();}catch ... try/catch/finally +track_element_constructor_test: Crash # Invalid argument(s) transferables_test: Crash # Invalid argument(s) -transition_event_test: Crash # (try {body();}catch ... try/finally -trusted_html_tree_sanitizer_test : Crash # bailout: (try {body();}catch (e,trace){var stack=(trace==null)?'':': ${trace.toString()}';environment.uncaughtErrorMessage="${e.toString()}${stack}";}finally {environment.currentContext=environment.currentContext.parent;}): try/finally -typed_arrays_1_test: Crash # (try {body();}catch ... try/finally +transition_event_test: Crash # (try {body();}catch ... try/catch/finally +trusted_html_tree_sanitizer_test: Crash # (try {body();}catch ... try/catch/finally +typed_arrays_1_test: Crash # (try {body();}catch ... try/catch/finally typed_arrays_2_test: Crash # Invalid argument(s) typed_arrays_3_test: Crash # Invalid argument(s) typed_arrays_4_test: Crash # Invalid argument(s) @@ -547,17 +547,17 @@ typed_arrays_simd_test: Crash # Invalid argument(s) typing_test: Crash # Invalid argument(s) unknownelement_test: Crash # Invalid argument(s) uri_test: Crash # Invalid argument(s) -url_test: Crash # (try {body();}catch ... try/finally -webgl_1_test: Crash # (try {body();}catch ... try/finally -websocket_test: Crash # (try {body();}catch ... try/finally -websql_test: Crash # (try {body();}catch ... try/finally -wheelevent_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +url_test: Crash # (try {body();}catch ... try/catch/finally +webgl_1_test: Crash # (try {body();}catch ... try/catch/finally +websocket_test: Crash # (try {body();}catch ... try/catch/finally +websql_test: Crash # (try {body();}catch ... try/catch/finally +wheelevent_test: Crash # Invalid argument(s) window_eq_test: Crash # Invalid argument(s) window_mangling_test: Crash # Invalid argument(s) window_nosuchmethod_test: Crash # Invalid argument(s) window_test: Crash # Invalid argument(s) -worker_api_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -worker_test: Crash # (try {body();}catch ... try/finally -xhr_cross_origin_test: Crash # (try {body();}catch ... try/finally -xhr_test: Crash # (try {body();}catch ... try/finally -xsltprocessor_test: Crash # (try {body();}catch ... try/finally +worker_api_test: Crash # Invalid argument(s) +worker_test: Crash # (try {body();}catch ... try/catch/finally +xhr_cross_origin_test: Crash # (try {body();}catch ... try/catch/finally +xhr_test: Crash # (try {body();}catch ... try/catch/finally +xsltprocessor_test: Crash # (try {body();}catch ... try/catch/finally diff --git a/tests/isolate/isolate.status b/tests/isolate/isolate.status index d27e225556d..58a420ab52e 100644 --- a/tests/isolate/isolate.status +++ b/tests/isolate/isolate.status @@ -126,63 +126,58 @@ mint_maker_test: StaticWarning package_root_test: SkipByDesign # Uses dart:io. [ $compiler == dart2js && $cps_ir ] -bool_from_environment_default_value_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -capability_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -compile_time_error_test/none: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -count_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -cross_isolate_message_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -deferred_in_isolate2_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -deferred_in_isolate_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -function_send_test: Crash # (try {p.send(func);}finally {p.send(0);}): try/finally -handle_error2_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -handle_error3_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -handle_error_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -illegal_msg_function_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -illegal_msg_mirror_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -int_from_environment_default_value_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -isolate_complex_messages_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -isolate_current_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -isolate_import_test/none: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -isolate_stress_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +bool_from_environment_default_value_test: RuntimeError # receiver.get$_collection$_nums is not a function +capability_test: RuntimeError # receiver.get$_collection$_nums is not a function +compile_time_error_test/none: RuntimeError # receiver.get$_collection$_nums is not a function +count_test: Crash # Invalid argument(s) +cross_isolate_message_test: Crash # Invalid argument(s) +deferred_in_isolate2_test: Crash # Invalid argument(s) +deferred_in_isolate_test: RuntimeError # receiver.get$_collection$_nums is not a function +function_send_test: RuntimeError # receiver.get$_nums is not a function +handle_error2_test: RuntimeError # receiver.get$_collection$_nums is not a function +handle_error3_test: RuntimeError # receiver.get$_collection$_nums is not a function +handle_error_test: RuntimeError # receiver.get$_collection$_nums is not a function +illegal_msg_function_test: Crash # Invalid argument(s) +illegal_msg_mirror_test: Crash # Invalid argument(s) +int_from_environment_default_value_test: RuntimeError # receiver.get$_collection$_nums is not a function +isolate_complex_messages_test: Crash # Invalid argument(s) +isolate_current_test: RuntimeError # receiver.get$_nums is not a function +isolate_import_test/none: RuntimeError # receiver.get$_collection$_nums is not a function issue_22778_test: RuntimeError # receiver.get$_collection$_nums is not a function -kill2_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -kill_self_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -kill_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -mandel_isolate_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -message2_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -message3_test/byteBuffer: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -message3_test/constInstance: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -message3_test/constList: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -message3_test/constList_identical: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -message3_test/constMap: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -message3_test/fun: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -message3_test/int32x4: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -message3_test/none: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -message_enum_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -message_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -mint_maker_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -nested_spawn2_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -nested_spawn_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -object_leak_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -ondone_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -pause_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -ping_pause_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -ping_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -port_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -raw_port_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -request_reply_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -simple_message_test/01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -simple_message_test/none: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -spawn_function_custom_class_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -spawn_function_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -spawn_uri_missing_from_isolate_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -spawn_uri_missing_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -spawn_uri_multi_test/01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -spawn_uri_multi_test/none: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -stacktrace_message_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -start_paused_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -static_function_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -string_from_environment_default_value_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -timer_isolate_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -typed_message_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -unresolved_ports_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +kill2_test: RuntimeError # receiver.get$_collection$_nums is not a function +kill_self_test: RuntimeError # receiver.get$_collection$_nums is not a function +kill_test: RuntimeError # receiver.get$_collection$_nums is not a function +mandel_isolate_test: Crash # Invalid argument(s) +message2_test: Crash # Invalid argument(s) +message3_test/byteBuffer: RuntimeError # receiver.get$_collection$_nums is not a function +message3_test/constInstance: Crash # Invalid argument(s) +message3_test/fun: RuntimeError # receiver.get$_collection$_nums is not a function +message3_test/int32x4: RuntimeError # receiver.get$_collection$_nums is not a function +message3_test/none: RuntimeError # receiver.get$_collection$_nums is not a function +message_enum_test: RuntimeError # receiver.get$_collection$_nums is not a function +message_test: Crash # Invalid argument(s) +mint_maker_test: Crash # Invalid argument(s) +nested_spawn2_test: Crash # Invalid argument(s) +nested_spawn_test: Crash # Invalid argument(s) +object_leak_test: RuntimeError # receiver.get$_collection$_nums is not a function +ondone_test: RuntimeError # receiver.get$_nums is not a function +pause_test: RuntimeError # receiver.get$_nums is not a function +ping_pause_test: RuntimeError # receiver.get$_collection$_nums is not a function +ping_test: RuntimeError # receiver.get$_collection$_nums is not a function +port_test: RuntimeError # receiver.get$_collection$_nums is not a function +raw_port_test: Crash # Invalid argument(s) +request_reply_test: Crash # Invalid argument(s) +simple_message_test/none: RuntimeError # receiver.get$_collection$_nums is not a function +spawn_function_custom_class_test: Crash # Invalid argument(s) +spawn_function_test: Crash # Invalid argument(s) +spawn_uri_missing_from_isolate_test: Crash # Invalid argument(s) +spawn_uri_missing_test: Crash # Invalid argument(s) +spawn_uri_multi_test/01: Crash # Invalid argument(s) +spawn_uri_multi_test/none: Crash # Invalid argument(s) +stacktrace_message_test: Crash # Invalid argument(s) +start_paused_test: RuntimeError # receiver.get$_nums is not a function +static_function_test: Crash # Invalid argument(s) +string_from_environment_default_value_test: RuntimeError # receiver.get$_collection$_nums is not a function +timer_isolate_test: Crash # Invalid argument(s) +typed_message_test: RuntimeError # receiver.get$_nums is not a function +unresolved_ports_test: Crash # Invalid argument(s) diff --git a/tests/language/language_dart2js.status b/tests/language/language_dart2js.status index a960b0b8bab..9950505f4de 100644 --- a/tests/language/language_dart2js.status +++ b/tests/language/language_dart2js.status @@ -319,11 +319,11 @@ async_or_generator_return_type_stacktrace_test/02: Crash # (void badReturnTypeAs async_or_generator_return_type_stacktrace_test/03: Crash # (void badReturnTypeSyncStar()sync*{}): cannot handle async/sync*/async* functions async_regression_23058_test: Crash # (foo()async{return x.foo==2?42:x.foo;}): cannot handle async/sync*/async* functions async_rethrow_test: Crash # (rethrowString()asyn... cannot handle async/sync*/async* functions -async_return_types_test/nestedFuture: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async_return_types_test/none: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async_return_types_test/tooManyTypeParameters: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async_return_types_test/wrongReturnType: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async_return_types_test/wrongTypeParameter: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +async_return_types_test/nestedFuture: Crash # (test()async{Expect.... cannot handle async/sync*/async* functions +async_return_types_test/none: Crash # (test()async{Expect.... cannot handle async/sync*/async* functions +async_return_types_test/tooManyTypeParameters: Crash # (test()async{Expect.... cannot handle async/sync*/async* functions +async_return_types_test/wrongReturnType: Crash # (test()async{Expect.... cannot handle async/sync*/async* functions +async_return_types_test/wrongTypeParameter: Crash # (test()async{Expect.... cannot handle async/sync*/async* functions async_star_cancel_and_throw_in_finally_test: Crash # (test()async{var com... cannot handle async/sync*/async* functions async_star_regression_23116_test: Crash # (test()async{Complet... cannot handle async/sync*/async* functions async_star_test/01: Crash # (f()async*{}): cannot handle async/sync*/async* functions @@ -340,16 +340,16 @@ async_test/type-mismatch2: Crash # (bar(int p1,p2)async{var z=8;return p2+z+foo; async_test/type-mismatch3: Crash # (bar(int p1,p2)async{var z=8;return p2+z+foo;}): cannot handle async/sync*/async* functions async_test/type-mismatch4: Crash # (bar(int p1,p2)async{var z=8;return p2+z+foo;}): cannot handle async/sync*/async* functions async_this_bound_test: Crash # (test()async{await testA();await testB();}): cannot handle async/sync*/async* functions -async_throw_in_catch_test/forceAwait: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async_throw_in_catch_test/none: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +async_throw_in_catch_test/forceAwait: Crash # (test()async{await r... cannot handle async/sync*/async* functions +async_throw_in_catch_test/none: Crash # (test()async{await r... cannot handle async/sync*/async* functions asyncstar_concat_test: Crash # (test()async{Expect.... cannot handle async/sync*/async* functions -asyncstar_throw_in_catch_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +asyncstar_throw_in_catch_test: Crash # (test()async{await r... cannot handle async/sync*/async* functions asyncstar_yield_test: Crash # (test()async{Expect.... cannot handle async/sync*/async* functions asyncstar_yieldstar_test: Crash # (test()async{Expect.... cannot handle async/sync*/async* functions await_backwards_compatibility_test/none: Crash # (test1()async{var x=await 9;Expect.equals(9,x);}): cannot handle async/sync*/async* functions await_exceptions_test: Crash # (awaitFoo()async{await foo();}): cannot handle async/sync*/async* functions await_for_cancel_test: Crash # (test()async{await test1();await test2();}): cannot handle async/sync*/async* functions -await_for_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +await_for_test: Crash # (consumeSomeOfInfini... cannot handle async/sync*/async* functions await_for_use_local_test: Crash # (test()async{var cou... cannot handle async/sync*/async* functions await_future_test: Crash # (test()async{var res... cannot handle async/sync*/async* functions await_nonfuture_test: Crash # (foo()async{Expect.equals(X,10);return await 5;}): cannot handle async/sync*/async* functions @@ -371,13 +371,11 @@ cha_deopt1_test: RuntimeError # receiver.get$_collection$_nums is not a function cha_deopt2_test: RuntimeError # receiver.get$_collection$_nums is not a function cha_deopt3_test: RuntimeError # receiver.get$_collection$_nums is not a function char_escape_test: RuntimeError # Please triage this failure. -class_override_test/00: Crash # (try {instance.foo();}on NoSuchMethodError catch (error){}finally {}): try/finally -class_override_test/none: Crash # (try {instance.foo();}finally {}): try/finally +class_override_test/00: Crash # (try {instance.foo();}on NoSuchMethodError catch (error){}finally {}): try/catch/finally closure7_test: RuntimeError # Cannot read property 'prototype' of undefined closure8_test: RuntimeError # Cannot read property 'prototype' of undefined closure_cycles_test: RuntimeError # receiver.get$_collection$_nums is not a function closure_in_constructor_test: Crash # Invalid argument(s) -closure_self_reference_test: Crash # (try {return inner(value-1);}finally {counter++ ;}): try/finally closure_shared_state_test: RuntimeError # Cannot read property 'prototype' of undefined closure_type_variables_test: Crash # Invalid argument(s) closures_initializer2_test: RuntimeError # Cannot read property 'prototype' of undefined @@ -397,70 +395,60 @@ cyclic_type_test/01: RuntimeError # Cannot read property 'prototype' of undefine cyclic_type_test/02: RuntimeError # Cannot read property 'prototype' of undefined cyclic_type_test/03: RuntimeError # Cannot read property 'prototype' of undefined cyclic_type_test/04: RuntimeError # Cannot read property 'prototype' of undefined -deferred_closurize_load_library_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -deferred_constant_list_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +deferred_closurize_load_library_test: RuntimeError # receiver.get$_collection$_nums is not a function +deferred_constant_list_test: RuntimeError # receiver.get$_collection$_nums is not a function deferred_constraints_constants_test/none: Crash # Internal Error: No default constructor available. deferred_constraints_constants_test/reference_after_load: Crash # Internal Error: No default constructor available. -deferred_constraints_type_annotation_test/as_operation: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +deferred_constraints_type_annotation_test/as_operation: RuntimeError # receiver.get$_collection$_nums is not a function deferred_constraints_type_annotation_test/catch_check: Crash # The null object does not have a getter '_element'. -deferred_constraints_type_annotation_test/is_check: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -deferred_constraints_type_annotation_test/new: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -deferred_constraints_type_annotation_test/new_before_load: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -deferred_constraints_type_annotation_test/new_generic1: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -deferred_constraints_type_annotation_test/new_generic2: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -deferred_constraints_type_annotation_test/new_generic3: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -deferred_constraints_type_annotation_test/none: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -deferred_constraints_type_annotation_test/static_method: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -deferred_constraints_type_annotation_test/type_annotation1: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -deferred_constraints_type_annotation_test/type_annotation_generic1: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -deferred_constraints_type_annotation_test/type_annotation_generic2: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -deferred_constraints_type_annotation_test/type_annotation_generic3: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -deferred_constraints_type_annotation_test/type_annotation_generic4: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -deferred_constraints_type_annotation_test/type_annotation_non_deferred: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -deferred_constraints_type_annotation_test/type_annotation_null: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -deferred_constraints_type_annotation_test/type_annotation_top_level: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +deferred_constraints_type_annotation_test/is_check: RuntimeError # receiver.get$_collection$_nums is not a function +deferred_constraints_type_annotation_test/new: RuntimeError # receiver.get$_collection$_nums is not a function +deferred_constraints_type_annotation_test/new_before_load: RuntimeError # receiver.get$_collection$_nums is not a function +deferred_constraints_type_annotation_test/new_generic1: RuntimeError # receiver.get$_collection$_nums is not a function +deferred_constraints_type_annotation_test/new_generic2: RuntimeError # receiver.get$_collection$_nums is not a function +deferred_constraints_type_annotation_test/new_generic3: RuntimeError # receiver.get$_collection$_nums is not a function +deferred_constraints_type_annotation_test/none: RuntimeError # receiver.get$_collection$_nums is not a function +deferred_constraints_type_annotation_test/static_method: RuntimeError # receiver.get$_collection$_nums is not a function +deferred_constraints_type_annotation_test/type_annotation1: RuntimeError # receiver.get$_collection$_nums is not a function +deferred_constraints_type_annotation_test/type_annotation_generic1: RuntimeError # receiver.get$_collection$_nums is not a function +deferred_constraints_type_annotation_test/type_annotation_generic2: RuntimeError # receiver.get$_collection$_nums is not a function +deferred_constraints_type_annotation_test/type_annotation_generic3: RuntimeError # receiver.get$_collection$_nums is not a function +deferred_constraints_type_annotation_test/type_annotation_generic4: RuntimeError # receiver.get$_collection$_nums is not a function +deferred_constraints_type_annotation_test/type_annotation_non_deferred: RuntimeError # receiver.get$_collection$_nums is not a function +deferred_constraints_type_annotation_test/type_annotation_null: RuntimeError # receiver.get$_collection$_nums is not a function +deferred_constraints_type_annotation_test/type_annotation_top_level: RuntimeError # receiver.get$_collection$_nums is not a function deferred_function_type_test: RuntimeError # receiver.get$_collection$_nums is not a function -deferred_global_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +deferred_global_test: RuntimeError # receiver.get$_collection$_nums is not a function deferred_inlined_test: RuntimeError # receiver.get$_collection$_nums is not a function -deferred_load_constants_test/none: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +deferred_load_constants_test/none: RuntimeError # receiver.get$_collection$_nums is not a function deferred_load_inval_code_test: RuntimeError # receiver.get$_collection$_nums is not a function deferred_load_library_wrong_args_test/none: RuntimeError # receiver.get$_collection$_nums is not a function -deferred_mixin_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -deferred_no_such_method_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +deferred_mixin_test: RuntimeError # receiver.get$_collection$_nums is not a function +deferred_no_such_method_test: RuntimeError # receiver.get$_collection$_nums is not a function deferred_not_loaded_check_test: RuntimeError # Please triage this failure. deferred_only_constant_test: RuntimeError # receiver.get$_collection$_nums is not a function deferred_optimized_test: RuntimeError # receiver.get$_collection$_nums is not a function deferred_redirecting_factory_test: Crash # (test()async{await t... cannot handle async/sync*/async* functions deferred_regression_22995_test: RuntimeError # receiver.get$_collection$_nums is not a function -deferred_shadow_load_library_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -deferred_shared_and_unshared_classes_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -deferred_static_seperate_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -deopt_inlined_function_lazy_test: Crash # (try {return x+12342353257893275483274832;}finally {}): try/finally +deferred_shadow_load_library_test: RuntimeError # receiver.get$_collection$_nums is not a function +deferred_shared_and_unshared_classes_test: RuntimeError # receiver.get$_collection$_nums is not a function +deferred_static_seperate_test: RuntimeError # receiver.get$_collection$_nums is not a function deopt_no_feedback_test: RuntimeError # Please triage this failure. enum_duplicate_test/01: RuntimeError # Please triage this failure. enum_duplicate_test/02: RuntimeError # Please triage this failure. enum_duplicate_test/none: RuntimeError # Please triage this failure. -enum_mirror_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +enum_mirror_test: Crash # Internal Error: No default constructor available. enum_private_test/01: RuntimeError # Please triage this failure. enum_private_test/02: RuntimeError # Please triage this failure. enum_private_test/none: RuntimeError # Please triage this failure. -execute_finally10_test: Crash # (try {throw 'foo';}c... try/finally -execute_finally11_test: Crash # (try {throw 'foo';}c... try/finally -execute_finally12_test: Crash # (try {try {}finally {a=8;break;}}finally {return a==8;}): try/finally -execute_finally1_test: Crash # (try {int j;j=func();i=1;return i;}finally {i=i+800;}): try/finally -execute_finally2_test: Crash # (try {int j;j=func()... try/finally -execute_finally3_test: Crash # (try {try {int j;j=f... try/finally -execute_finally4_test: Crash # (try {int j;j=func();i=1;}finally {i=i+10;}): try/finally -execute_finally5_test: Crash # (try {int j;j=func()... try/finally -execute_finally6_test: Crash # (try {try {int j;j=f... try/finally -execute_finally7_test: Crash # (try {var a=new List... try/finally -execute_finally8_test: Crash # (try {sum+= 1;return 'hi';}finally {sum+= 1;throw 'ball';sum+= 1;}): try/finally -execute_finally9_test: Crash # (try {sum+= 1;return... try/finally +execute_finally10_test: Crash # (try {throw 'foo';}c... try/catch/finally +execute_finally11_test: Crash # (try {throw 'foo';}c... try/catch/finally +execute_finally7_test: Crash # (try {var a=new List... try/catch/finally +execute_finally9_test: Crash # (try {sum+= 1;return... try/catch/finally f_bounded_equality_test: RuntimeError # Cannot read property 'prototype' of undefined fannkuch_test: RuntimeError # Please triage this failure. field_increment_bailout_test: RuntimeError # Please triage this failure. final_super_field_set_test/01: RuntimeError # Please triage this failure. -finally_test: Crash # (try {i=12;}finally {Expect.equals(12,i);executedFinally=true;}): try/finally fixed_length_test: RuntimeError # Please triage this failure. fixed_type_variable_test/02: RuntimeError # Cannot read property 'prototype' of undefined fixed_type_variable_test/04: RuntimeError # Cannot read property 'prototype' of undefined @@ -556,10 +544,9 @@ invocation_mirror_test: Crash # (super[37]=42): visitUnresolvedSuperIndexSet is_function_test: RuntimeError # Cannot read property 'prototype' of undefined issue12288_test: RuntimeError # Please triage this failure. issue13179_test: RuntimeError # Cannot read property 'prototype' of undefined -issue20476_test: Crash # (try {try {return 1;}catch (e1){}finally {return 3;}}catch (e2){}finally {return 5;}): try/finally +issue20476_test: Crash # (try {try {return 1;... try/catch/finally issue7513_test: RuntimeError # Please triage this failure. issue_1751477_test: RuntimeError # receiver.get$_collection$_nums is not a function -label_test: Crash # (try {while(doAgain()){break L;}i-- ;}finally {}): try/finally large_class_declaration_test: Crash # Stack Overflow list_literal3_test: RuntimeError # Please triage this failure. list_test: RuntimeError # Please triage this failure. @@ -588,7 +575,6 @@ mega_load_test: RuntimeError # Please triage this failure. method_binding_test: RuntimeError # Cannot read property 'prototype' of undefined methods_as_constants2_test: RuntimeError # Cannot read property 'prototype' of undefined minify_closure_variable_collision_test: RuntimeError # Please triage this failure. -mint_arithmetic_test: Crash # (try {f(a,b){var s=b... try/finally mint_compares_test: RuntimeError # Cannot read property 'prototype' of undefined mixin_bound_test: Crash # Internal Error: No default constructor available. mixin_forwarding_constructor1_test: Crash # Internal Error: No default constructor available. @@ -641,28 +627,23 @@ regress_11800_test: RuntimeError # Please triage this failure. regress_18435_test: Crash # Invalid argument(s) regress_18535_test: Crash # Internal Error: No default constructor available. regress_21016_test: RuntimeError # Please triage this failure. -regress_21795_test: Crash # (try {foo(t);}finally {if(t==0){try {}catch (err,st){}}}): try/finally regress_22438_test: Crash # (main()async{var err... cannot handle async/sync*/async* functions regress_22443_test: RuntimeError # receiver.get$_collection$_nums is not a function regress_22445_test: Crash # (main()async{var err... cannot handle async/sync*/async* functions regress_22579_test: Crash # (main()async{var err... cannot handle async/sync*/async* functions regress_22728_test: Crash # (main()async{bool fa... cannot handle async/sync*/async* functions regress_22777_test: Crash # (test()async{try {te... cannot handle async/sync*/async* functions -regress_22822_test: Crash # (try {for(int i=0;i<10;i++ ){return ()=>i+b;}}finally {b=10;}): try/finally regress_22936_test/01: Crash # The null object does not have a getter '_element'. regress_22936_test/none: Crash # The null object does not have a getter '_element'. regress_23498_test: Crash # (main()async{var err... cannot handle async/sync*/async* functions regress_23500_test/01: Crash # (main()async{var err... cannot handle async/sync*/async* functions regress_23500_test/02: Crash # (main()async{var err... cannot handle async/sync*/async* functions regress_23500_test/none: Crash # (main()async{var err... cannot handle async/sync*/async* functions -regress_23537_test: Crash # (try {var b;try {for... try/finally -regress_23650_test: Crash # (try {return new C.foo();}finally {}): try/finally -stack_trace_test: Crash # (try {int j;i=func2(... try/finally -statement_test: Crash # (try {throw "foo";}c... try/finally +stack_trace_test: Crash # (try {int j;i=func2(... try/catch/finally +statement_test: Crash # (try {throw "foo";}c... try/catch/finally static_closure_identical_test: RuntimeError # Cannot read property 'prototype' of undefined static_field_test/none: RuntimeError # Cannot read property 'prototype' of undefined static_implicit_closure_test: RuntimeError # Cannot read property 'prototype' of undefined -static_postfix_operator_test: Crash # (try {if(a++ ==0){inIt=true;}}finally {}): try/finally string_interpolation_test/01: RuntimeError # Cannot read property 'prototype' of undefined string_interpolation_test/none: RuntimeError # Cannot read property 'prototype' of undefined string_join_test: RuntimeError # Please triage this failure. @@ -699,20 +680,16 @@ sync_generator3_test/test2: Crash # (g()sync*{try {yield... cannot handle async syncstar_yield_test/copyParameters: Crash # (Iterable foo3(... cannot handle async/sync*/async* functions syncstar_yield_test/none: Crash # (Iterable foo3(... cannot handle async/sync*/async* functions syncstar_yieldstar_test: Crash # (main()async{Expect.... cannot handle async/sync*/async* functions -throw1_test: Crash # (try {int j;j=func()... try/finally -throw2_test: Crash # (try {int j;j=func()... try/finally -throw3_test: Crash # (try {int j;i=100;i=... try/finally -throw4_test: Crash # (try {j=func();}on M... try/finally -throw5_test: Crash # (try {int j;j=func()... try/finally -throw6_test: Crash # (try {j=func();}catc... try/finally -throw8_test: Crash # (try {try {return 49... try/finally -throw_test: Crash # (try {int j;j=func()... try/finally +throw1_test: Crash # (try {int j;j=func()... try/catch/finally +throw2_test: Crash # (try {int j;j=func()... try/catch/finally +throw3_test: Crash # (try {int j;i=100;i=... try/catch/finally +throw4_test: Crash # (try {j=func();}on M... try/catch/finally +throw5_test: Crash # (try {int j;j=func()... try/catch/finally +throw6_test: Crash # (try {j=func();}catc... try/catch/finally +throw_test: Crash # (try {int j;j=func()... try/catch/finally top_level_in_initializer_test: RuntimeError # Cannot read property 'prototype' of undefined -try_catch3_test: Crash # (try {int j;j=f2();j... try/finally -try_catch4_test: Crash # (try {doThrow();}cat... try/finally -try_catch5_test: Crash # (try {try {a=8;return;}finally {b=8==a;entered=true;continue;}}finally {continue;}): try/finally -try_catch_optimized2_test: Crash # (try {bar();}finally {}): try/finally -try_catch_osr_test: Crash # (try {if(x==null)throw 42;return 99;}finally {}): try/finally +try_catch3_test: Crash # (try {int j;j=f2();j... try/catch/finally +try_catch4_test: Crash # (try {doThrow();}cat... try/catch/finally try_catch_test/none: Crash # The null object does not have a getter '_element'. type_check_const_function_typedef2_test/00: RuntimeError # Cannot read property 'prototype' of undefined type_check_const_function_typedef2_test/none: RuntimeError # Cannot read property 'prototype' of undefined diff --git a/tests/lib/lib.status b/tests/lib/lib.status index bb366d43a78..184c01d5b53 100644 --- a/tests/lib/lib.status +++ b/tests/lib/lib.status @@ -328,150 +328,146 @@ mirrors/immutable_collections_test: SkipSlow # Timeout. convert/streamed_conversion_json_utf8_decode_test: Skip # Timeout. [ $compiler == dart2js && $cps_ir ] -async/catch_errors11_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/catch_errors12_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/catch_errors13_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/catch_errors14_test: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -async/catch_errors15_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/catch_errors16_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/catch_errors17_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/catch_errors18_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/catch_errors19_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/catch_errors20_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/catch_errors21_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/catch_errors22_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/catch_errors23_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/catch_errors24_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/catch_errors25_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/catch_errors26_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/catch_errors27_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/catch_errors28_test: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -async/catch_errors2_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/catch_errors3_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/catch_errors4_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/catch_errors5_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/catch_errors6_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/catch_errors7_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/catch_errors8_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/catch_errors_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/first_regression_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/future_constructor_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/future_delayed_error_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/future_microtask_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +async/catch_errors11_test: RuntimeError # receiver.get$_nums is not a function +async/catch_errors12_test: RuntimeError # receiver.get$_nums is not a function +async/catch_errors13_test: RuntimeError # receiver.get$_nums is not a function +async/catch_errors14_test: RuntimeError # receiver.get$_nums is not a function +async/catch_errors15_test: RuntimeError # receiver.get$_nums is not a function +async/catch_errors16_test: RuntimeError # receiver.get$_nums is not a function +async/catch_errors17_test: RuntimeError # receiver.get$_nums is not a function +async/catch_errors18_test: RuntimeError # receiver.get$_nums is not a function +async/catch_errors19_test: RuntimeError # receiver.get$_nums is not a function +async/catch_errors20_test: RuntimeError # receiver.get$_nums is not a function +async/catch_errors21_test: RuntimeError # receiver.get$_nums is not a function +async/catch_errors22_test: RuntimeError # receiver.get$_nums is not a function +async/catch_errors23_test: RuntimeError # receiver.get$_nums is not a function +async/catch_errors24_test: RuntimeError # receiver.get$_nums is not a function +async/catch_errors25_test: RuntimeError # receiver.get$_nums is not a function +async/catch_errors26_test: RuntimeError # receiver.get$_nums is not a function +async/catch_errors27_test: RuntimeError # receiver.get$_nums is not a function +async/catch_errors28_test: RuntimeError # receiver.get$_nums is not a function +async/catch_errors2_test: RuntimeError # receiver.get$_nums is not a function +async/catch_errors3_test: RuntimeError # receiver.get$_nums is not a function +async/catch_errors4_test: RuntimeError # receiver.get$_nums is not a function +async/catch_errors5_test: RuntimeError # receiver.get$_nums is not a function +async/catch_errors6_test: RuntimeError # receiver.get$_nums is not a function +async/catch_errors7_test: RuntimeError # receiver.get$_nums is not a function +async/catch_errors8_test: RuntimeError # receiver.get$_nums is not a function +async/catch_errors_test: RuntimeError # receiver.get$_nums is not a function +async/first_regression_test: Crash # Invalid argument(s) +async/future_constructor_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/future_delayed_error_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/future_microtask_test: RuntimeError # receiver.get$_collection$_nums is not a function async/future_test/01: Crash # (()async=>new Future.value(value)): cannot handle async/sync*/async* functions -async/future_test/none: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/future_timeout_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/future_value_chain2_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/future_value_chain3_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/future_value_chain4_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/future_value_chain_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/futures_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/intercept_print1_test: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -async/intercept_schedule_microtask1_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/intercept_schedule_microtask2_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/intercept_schedule_microtask3_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/intercept_schedule_microtask4_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/intercept_schedule_microtask5_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/intercept_schedule_microtask6_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/multiple_timer_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/print_test/01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/print_test/none: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/run_zoned1_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/run_zoned4_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/run_zoned5_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/run_zoned6_test/01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/run_zoned6_test/none: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/run_zoned7_test: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -async/run_zoned8_test: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -async/run_zoned9_test/01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/run_zoned9_test/none: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/schedule_microtask2_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/schedule_microtask3_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/schedule_microtask5_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +async/future_test/none: RuntimeError # receiver.get$_nums is not a function +async/future_timeout_test: Crash # Invalid argument(s) +async/future_value_chain2_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/future_value_chain3_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/future_value_chain4_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/future_value_chain_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/futures_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/intercept_print1_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/intercept_schedule_microtask1_test: RuntimeError # receiver.get$_nums is not a function +async/intercept_schedule_microtask2_test: RuntimeError # receiver.get$_nums is not a function +async/intercept_schedule_microtask3_test: RuntimeError # receiver.get$_nums is not a function +async/intercept_schedule_microtask4_test: RuntimeError # receiver.get$_nums is not a function +async/intercept_schedule_microtask5_test: RuntimeError # receiver.get$_nums is not a function +async/intercept_schedule_microtask6_test: RuntimeError # receiver.get$_nums is not a function +async/multiple_timer_test: Crash # Invalid argument(s) +async/print_test/none: RuntimeError # receiver.get$_nums is not a function +async/run_zoned1_test: RuntimeError # receiver.get$_nums is not a function +async/run_zoned4_test: RuntimeError # receiver.get$_nums is not a function +async/run_zoned5_test: RuntimeError # receiver.get$_nums is not a function +async/run_zoned6_test/none: RuntimeError # receiver.get$_nums is not a function +async/run_zoned7_test: RuntimeError # receiver.get$_nums is not a function +async/run_zoned8_test: RuntimeError # receiver.get$_nums is not a function +async/run_zoned9_test/none: RuntimeError # receiver.get$_nums is not a function +async/schedule_microtask2_test: Crash # Invalid argument(s) +async/schedule_microtask3_test: Crash # Invalid argument(s) +async/schedule_microtask5_test: Crash # Invalid argument(s) async/schedule_microtask_test: Crash # Invalid argument(s) -async/slow_consumer2_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/slow_consumer3_test: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -async/slow_consumer_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stack_trace01_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stack_trace02_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stack_trace03_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stack_trace04_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stack_trace05_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stack_trace06_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stack_trace07_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stack_trace08_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stack_trace09_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stack_trace10_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stack_trace11_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stack_trace12_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stack_trace13_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stack_trace14_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stack_trace15_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stack_trace16_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stack_trace17_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stack_trace18_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stack_trace19_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stack_trace20_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stack_trace21_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stack_trace22_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stack_trace23_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stack_trace24_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stack_trace25_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +async/slow_consumer2_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/slow_consumer3_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/slow_consumer_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/stack_trace01_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/stack_trace02_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/stack_trace03_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/stack_trace04_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/stack_trace05_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/stack_trace06_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/stack_trace07_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/stack_trace08_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/stack_trace09_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/stack_trace10_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/stack_trace11_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/stack_trace12_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/stack_trace13_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/stack_trace14_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/stack_trace15_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/stack_trace16_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/stack_trace17_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/stack_trace18_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/stack_trace19_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/stack_trace20_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/stack_trace21_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/stack_trace22_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/stack_trace23_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/stack_trace24_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/stack_trace25_test: RuntimeError # receiver.get$_collection$_nums is not a function async/stream_controller_async_test: Crash # Invalid argument(s) -async/stream_controller_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +async/stream_controller_test: RuntimeError # receiver.get$_collection$_nums is not a function async/stream_empty_test: Crash # (Future runTest()asy... cannot handle async/sync*/async* functions -async/stream_event_transformed_test: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -async/stream_first_where_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stream_from_iterable_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stream_iterator_double_cancel_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stream_iterator_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stream_join_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stream_last_where_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stream_listen_zone_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stream_periodic2_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stream_periodic3_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stream_periodic4_test: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -async/stream_periodic5_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stream_periodic_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +async/stream_event_transformed_test: RuntimeError # receiver.get$_nums is not a function +async/stream_first_where_test: Crash # Invalid argument(s) +async/stream_from_iterable_test: Crash # Invalid argument(s) +async/stream_iterator_double_cancel_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/stream_iterator_test: Crash # Invalid argument(s) +async/stream_join_test: Crash # Invalid argument(s) +async/stream_last_where_test: Crash # Invalid argument(s) +async/stream_listen_zone_test: RuntimeError # receiver.get$_nums is not a function +async/stream_periodic2_test: Crash # Invalid argument(s) +async/stream_periodic3_test: Crash # Invalid argument(s) +async/stream_periodic4_test: Crash # Invalid argument(s) +async/stream_periodic5_test: Crash # Invalid argument(s) +async/stream_periodic_test: Crash # Invalid argument(s) async/stream_single_test: Crash # Invalid argument(s) -async/stream_single_to_multi_subscriber_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stream_state_nonzero_timer_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +async/stream_single_to_multi_subscriber_test: Crash # Invalid argument(s) +async/stream_state_nonzero_timer_test: Crash # Invalid argument(s) async/stream_state_test: Crash # Invalid argument(s) -async/stream_subscription_as_future_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +async/stream_subscription_as_future_test: Crash # Invalid argument(s) async/stream_subscription_cancel_test: Crash # Invalid argument(s) async/stream_timeout_test: Crash # Invalid argument(s) -async/stream_transform_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stream_transformation_broadcast_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stream_transformer_from_handlers_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stream_transformer_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/stream_zones_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/timer_cancel1_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/timer_cancel2_test: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -async/timer_cancel_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/timer_isActive_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/timer_not_available_test: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally +async/stream_transform_test: Crash # Invalid argument(s) +async/stream_transformation_broadcast_test: Crash # Invalid argument(s) +async/stream_transformer_from_handlers_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/stream_transformer_test: RuntimeError # receiver.get$_collection$_nums is not a function +async/stream_zones_test: RuntimeError # receiver.get$_nums is not a function +async/timer_cancel1_test: Crash # Invalid argument(s) +async/timer_cancel2_test: Crash # Invalid argument(s) +async/timer_cancel_test: Crash # Invalid argument(s) +async/timer_isActive_test: Crash # Invalid argument(s) async/timer_regress22626_test: RuntimeError # receiver.get$_collection$_nums is not a function -async/timer_repeat_test: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -async/timer_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/zone_bind_callback_test: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -async/zone_bind_callback_unary_test: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -async/zone_bind_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/zone_create_periodic_timer_test: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -async/zone_create_timer2_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/zone_create_timer_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/zone_debug_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/zone_empty_description2_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/zone_empty_description_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/zone_error_callback_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/zone_fork_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/zone_future_schedule_microtask_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/zone_register_callback_test: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -async/zone_register_callback_unary_test: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -async/zone_root_bind_test: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -async/zone_run_guarded_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/zone_run_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/zone_run_unary_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -async/zone_value_test: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally +async/timer_repeat_test: Crash # Invalid argument(s) +async/timer_test: Crash # Invalid argument(s) +async/zone_bind_callback_test: RuntimeError # receiver.get$_nums is not a function +async/zone_bind_callback_unary_test: RuntimeError # receiver.get$_nums is not a function +async/zone_bind_test: RuntimeError # receiver.get$_nums is not a function +async/zone_create_periodic_timer_test: RuntimeError # receiver.get$_nums is not a function +async/zone_create_timer2_test: RuntimeError # receiver.get$_nums is not a function +async/zone_create_timer_test: RuntimeError # receiver.get$_nums is not a function +async/zone_debug_test: RuntimeError # receiver.get$_nums is not a function +async/zone_empty_description2_test: RuntimeError # receiver.get$_nums is not a function +async/zone_empty_description_test: RuntimeError # receiver.get$_nums is not a function +async/zone_error_callback_test: RuntimeError # receiver.get$_nums is not a function +async/zone_fork_test: RuntimeError # receiver.get$_nums is not a function +async/zone_future_schedule_microtask_test: RuntimeError # receiver.get$_nums is not a function +async/zone_register_callback_test: RuntimeError # receiver.get$_nums is not a function +async/zone_register_callback_unary_test: RuntimeError # receiver.get$_nums is not a function +async/zone_root_bind_test: RuntimeError # receiver.get$_nums is not a function +async/zone_run_guarded_test: RuntimeError # receiver.get$_nums is not a function +async/zone_run_test: RuntimeError # receiver.get$_nums is not a function +async/zone_run_unary_test: RuntimeError # receiver.get$_nums is not a function +async/zone_value_test: RuntimeError # receiver.get$_collection$_nums is not a function convert/ascii_test: RuntimeError # Please triage this failure. convert/chunked_conversion1_test: RuntimeError # Please triage this failure. convert/chunked_conversion2_test: RuntimeError # Please triage this failure. @@ -488,8 +484,8 @@ convert/chunked_conversion_utf89_test: RuntimeError # Please triage this failure convert/chunked_conversion_utf8_test: RuntimeError # Please triage this failure. convert/codec1_test: RuntimeError # Cannot read property 'prototype' of undefined convert/codec2_test: Crash # Internal Error: No default constructor available. -convert/encoding_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -convert/html_escape_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +convert/encoding_test: RuntimeError # receiver.get$_collection$_nums is not a function +convert/html_escape_test: RuntimeError # receiver.get$_collection$_nums is not a function convert/json_chunk_test: RuntimeError # Please triage this failure. convert/json_lib_test: Crash # Invalid argument(s) convert/json_pretty_test: Crash # Internal Error: No default constructor available. @@ -498,13 +494,13 @@ convert/json_toEncodable_reviver_test: Crash # Internal Error: No default constr convert/json_utf8_chunk_test: RuntimeError # Please triage this failure. convert/json_util_test: Crash # Internal Error: No default constructor available. convert/latin1_test: RuntimeError # Please triage this failure. -convert/line_splitter_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -convert/streamed_conversion_json_decode1_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -convert/streamed_conversion_json_encode1_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -convert/streamed_conversion_json_utf8_decode_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -convert/streamed_conversion_json_utf8_encode_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -convert/streamed_conversion_utf8_decode_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -convert/streamed_conversion_utf8_encode_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +convert/line_splitter_test: Crash # Invalid argument(s) +convert/streamed_conversion_json_decode1_test: RuntimeError # receiver.get$_collection$_nums is not a function +convert/streamed_conversion_json_encode1_test: Crash # Internal Error: No default constructor available. +convert/streamed_conversion_json_utf8_decode_test: RuntimeError # receiver.get$_collection$_nums is not a function +convert/streamed_conversion_json_utf8_encode_test: Crash # Internal Error: No default constructor available. +convert/streamed_conversion_utf8_decode_test: RuntimeError # receiver.get$_collection$_nums is not a function +convert/streamed_conversion_utf8_encode_test: RuntimeError # receiver.get$_collection$_nums is not a function convert/utf82_test: RuntimeError # Please triage this failure. convert/utf84_test: RuntimeError # Please triage this failure. convert/utf8_encode_test: RuntimeError # Please triage this failure. @@ -517,8 +513,8 @@ math/rectangle_test: Crash # Invalid argument(s) mirrors/abstract_class_test/00: Crash # Internal Error: No default constructor available. mirrors/abstract_class_test/none: Crash # Internal Error: No default constructor available. mirrors/abstract_test: Crash # Internal Error: No default constructor available. -mirrors/accessor_cache_overflow_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -mirrors/array_tracing2_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +mirrors/accessor_cache_overflow_test: Crash # Internal Error: No default constructor available. +mirrors/array_tracing2_test: Crash # Internal Error: No default constructor available. mirrors/array_tracing3_test: Crash # Internal Error: No default constructor available. mirrors/array_tracing_test: Crash # Internal Error: No default constructor available. mirrors/basic_types_in_dart_core_test: Crash # Internal Error: No default constructor available. @@ -527,12 +523,12 @@ mirrors/class_declarations_test/01: Crash # Internal Error: No default construct mirrors/class_declarations_test/none: Crash # Internal Error: No default constructor available. mirrors/class_mirror_location_test: Crash # Internal Error: No default constructor available. mirrors/class_mirror_type_variables_test: Crash # Internal Error: No default constructor available. -mirrors/closures_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +mirrors/closures_test: Crash # Internal Error: No default constructor available. mirrors/closurization_equivalence_test: Crash # Internal Error: No default constructor available. mirrors/constructor_kinds_test/01: Crash # Internal Error: No default constructor available. mirrors/constructor_kinds_test/none: Crash # Internal Error: No default constructor available. mirrors/constructors_test: Crash # Internal Error: No default constructor available. -mirrors/dart2js_mirrors_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +mirrors/dart2js_mirrors_test: Crash # Internal Error: No default constructor available. mirrors/declarations_type_test: Crash # Internal Error: No default constructor available. mirrors/deferred_mirrors_metadata_test: Crash # Internal Error: No default constructor available. mirrors/deferred_mirrors_metatarget_test: Crash # Internal Error: No default constructor available. @@ -593,17 +589,17 @@ mirrors/instance_members_test: Crash # Internal Error: No default constructor av mirrors/instance_members_unimplemented_interface_test: Crash # Internal Error: No default constructor available. mirrors/instance_members_with_override_test: Crash # Internal Error: No default constructor available. mirrors/instantiate_abstract_class_test: Crash # Internal Error: No default constructor available. -mirrors/intercepted_cache_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +mirrors/intercepted_cache_test: Crash # Internal Error: No default constructor available. mirrors/intercepted_class_test: Crash # Internal Error: No default constructor available. mirrors/intercepted_object_test: Crash # Internal Error: No default constructor available. mirrors/intercepted_superclass_test: Crash # Internal Error: No default constructor available. mirrors/invocation_cache_test: RuntimeError # Please triage this failure. -mirrors/invocation_fuzz_test/emptyarray: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -mirrors/invocation_fuzz_test/false: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -mirrors/invocation_fuzz_test/none: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -mirrors/invocation_fuzz_test/smi: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -mirrors/invocation_fuzz_test/string: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -mirrors/invoke_call_on_closure_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +mirrors/invocation_fuzz_test/emptyarray: Crash # Internal Error: No default constructor available. +mirrors/invocation_fuzz_test/false: Crash # Internal Error: No default constructor available. +mirrors/invocation_fuzz_test/none: Crash # Internal Error: No default constructor available. +mirrors/invocation_fuzz_test/smi: Crash # Internal Error: No default constructor available. +mirrors/invocation_fuzz_test/string: Crash # Internal Error: No default constructor available. +mirrors/invoke_call_on_closure_test: Crash # Internal Error: No default constructor available. mirrors/invoke_call_through_getter_previously_accessed_test/named: Crash # Internal Error: No default constructor available. mirrors/invoke_call_through_getter_previously_accessed_test/none: Crash # Internal Error: No default constructor available. mirrors/invoke_call_through_getter_test/named: Crash # Internal Error: No default constructor available. @@ -611,7 +607,7 @@ mirrors/invoke_call_through_getter_test/none: Crash # Internal Error: No default mirrors/invoke_call_through_implicit_getter_previously_accessed_test/named: Crash # Internal Error: No default constructor available. mirrors/invoke_call_through_implicit_getter_previously_accessed_test/none: Crash # Internal Error: No default constructor available. mirrors/invoke_call_through_implicit_getter_test: Crash # Internal Error: No default constructor available. -mirrors/invoke_closurization2_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +mirrors/invoke_closurization2_test: Crash # Internal Error: No default constructor available. mirrors/invoke_closurization_test: Crash # Internal Error: No default constructor available. mirrors/invoke_import_test: Crash # Internal Error: No default constructor available. mirrors/invoke_named_test/01: Crash # Internal Error: No default constructor available. @@ -619,15 +615,15 @@ mirrors/invoke_named_test/none: Crash # Internal Error: No default constructor a mirrors/invoke_natives_malicious_test: Crash # Internal Error: No default constructor available. mirrors/invoke_test: Crash # Internal Error: No default constructor available. mirrors/invoke_throws_test: Crash # Internal Error: No default constructor available. -mirrors/is_odd_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +mirrors/is_odd_test: Crash # Internal Error: No default constructor available. mirrors/lazy_static_test: Crash # Internal Error: No default constructor available. mirrors/libraries_test: Crash # Internal Error: No default constructor available. mirrors/library_declarations_test/01: Crash # Internal Error: No default constructor available. mirrors/library_declarations_test/none: Crash # Internal Error: No default constructor available. -mirrors/library_enumeration_deferred_loading_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +mirrors/library_enumeration_deferred_loading_test: Crash # Internal Error: No default constructor available. mirrors/library_exports_hidden_test: Crash # Internal Error: No default constructor available. mirrors/library_exports_shown_test: Crash # Internal Error: No default constructor available. -mirrors/library_import_deferred_loading_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +mirrors/library_import_deferred_loading_test: Crash # Internal Error: No default constructor available. mirrors/library_imports_bad_metadata_test/none: Crash # Internal Error: No default constructor available. mirrors/library_imports_deferred_test: Crash # Internal Error: No default constructor available. mirrors/library_imports_hidden_test: Crash # Internal Error: No default constructor available. @@ -640,8 +636,8 @@ mirrors/library_metadata_test: Crash # Internal Error: No default constructor av mirrors/library_uri_package_test: Crash # Invalid argument(s) mirrors/list_constructor_test/01: Crash # Internal Error: No default constructor available. mirrors/list_constructor_test/none: Crash # Internal Error: No default constructor available. -mirrors/load_library_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -mirrors/local_function_is_static_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +mirrors/load_library_test: Crash # Internal Error: No default constructor available. +mirrors/local_function_is_static_test: Crash # Internal Error: No default constructor available. mirrors/local_isolate_test: Crash # Internal Error: No default constructor available. mirrors/metadata_allowed_values_test/01: Crash # Internal Error: No default constructor available. mirrors/metadata_allowed_values_test/05: Crash # Internal Error: No default constructor available. @@ -657,10 +653,10 @@ mirrors/metadata_constructor_arguments_test/none: Crash # Internal Error: No def mirrors/metadata_nested_constructor_call_test/none: Crash # Internal Error: No default constructor available. mirrors/metadata_test: Crash # Internal Error: No default constructor available. mirrors/method_mirror_location_test: Crash # Internal Error: No default constructor available. -mirrors/method_mirror_name_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +mirrors/method_mirror_name_test: Crash # Internal Error: No default constructor available. mirrors/method_mirror_properties_test: Crash # Internal Error: No default constructor available. mirrors/method_mirror_returntype_test: Crash # Internal Error: No default constructor available. -mirrors/method_mirror_source_line_ending_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +mirrors/method_mirror_source_line_ending_test: Crash # Internal Error: No default constructor available. mirrors/method_mirror_source_test: Crash # Internal Error: No default constructor available. mirrors/mirror_in_static_init_test/none: Crash # Internal Error: No default constructor available. mirrors/mirrors_nsm_mismatch_test: Crash # Internal Error: No default constructor available. @@ -674,11 +670,11 @@ mirrors/mirrors_used_typedef_declaration_test/none: Crash # Internal Error: No d mirrors/mixin_application_test: Crash # Internal Error: No default constructor available. mirrors/mixin_members_test: Crash # Internal Error: No default constructor available. mirrors/mixin_test: Crash # Internal Error: No default constructor available. -mirrors/native_class_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +mirrors/native_class_test: Crash # Internal Error: No default constructor available. mirrors/new_instance_optional_arguments_test: Crash # Internal Error: No default constructor available. mirrors/new_instance_with_type_arguments_test: Crash # Internal Error: No default constructor available. mirrors/no_metadata_test: Crash # Internal Error: No default constructor available. -mirrors/null2_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +mirrors/null2_test: Crash # Internal Error: No default constructor available. mirrors/null_test: Crash # Invalid argument(s) mirrors/operator_test: Crash # Internal Error: No default constructor available. mirrors/parameter_annotation_mirror_test: Crash # Internal Error: No default constructor available. @@ -725,15 +721,15 @@ mirrors/removed_api_test: Crash # Internal Error: No default constructor availab mirrors/repeated_private_anon_mixin_app_test: Crash # Internal Error: No default constructor available. mirrors/return_type_test: Crash # Internal Error: No default constructor available. mirrors/runtime_type_test: Crash # Internal Error: No default constructor available. -mirrors/set_field_with_final_inheritance_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +mirrors/set_field_with_final_inheritance_test: Crash # Internal Error: No default constructor available. mirrors/set_field_with_final_test: Crash # Internal Error: No default constructor available. -mirrors/spawn_function_root_library_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +mirrors/spawn_function_root_library_test: Crash # Internal Error: No default constructor available. mirrors/static_members_easier_test: Crash # Internal Error: No default constructor available. mirrors/static_members_test: Crash # Internal Error: No default constructor available. mirrors/static_test: Crash # Internal Error: No default constructor available. mirrors/superclass2_test: Crash # Internal Error: No default constructor available. mirrors/superclass_test: Crash # Internal Error: No default constructor available. -mirrors/symbol_validation_test/01: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +mirrors/symbol_validation_test/01: Crash # Internal Error: No default constructor available. mirrors/symbol_validation_test/none: RuntimeError # Please triage this failure. mirrors/syntax_error_test/none: Crash # Internal Error: No default constructor available. mirrors/synthetic_accessor_properties_test: Crash # Internal Error: No default constructor available. diff --git a/tests/standalone/standalone.status b/tests/standalone/standalone.status index f8dede56e50..7036123ce30 100644 --- a/tests/standalone/standalone.status +++ b/tests/standalone/standalone.status @@ -171,56 +171,27 @@ io/http_client_stays_alive_test: Skip # Timeout. [ $compiler == dart2js && $cps_ir ] array_bounds_check_generalization_test: RuntimeError # Please triage this failure. -coverage_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/addlatexhash_test: Crash # (try {test(tempDir.path);}finally {tempDir.delete(recursive:true);}): try/finally -io/async_catch_errors_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/code_collection_test: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -io/create_recursive_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/dart_std_io_pipe_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/delete_symlink_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/dependency_graph_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/directory_chdir_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/directory_create_race_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/directory_error_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/directory_fuzz_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/directory_invalid_arguments_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/directory_list_nonexistent_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +coverage_test: Crash # Invalid argument(s) +io/addlatexhash_test: Crash # Invalid argument(s) +io/create_recursive_test: Crash # Invalid argument(s) io/directory_list_pause_test: Crash # Invalid argument(s) -io/directory_non_ascii_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/directory_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally io/directory_uri_test: Crash # Invalid argument(s) -io/echo_server_stream_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/file_copy_test: Crash # (try {opened.writeFr... try/finally -io/file_error_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/file_fuzz_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/file_input_stream_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/file_invalid_arguments_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/file_lock_test: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -io/file_non_ascii_sync_test: Crash # (try {opened.writeFr... try/finally -io/file_non_ascii_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/file_output_stream_test: Crash # (try {var data;var l... try/finally -io/file_read_encoded_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/file_stat_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/file_stream_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/file_system_async_links_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/file_system_delete_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/file_system_exists_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/file_system_links_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/file_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +io/file_lock_test: Crash # Invalid argument(s) +io/file_stat_test: Crash # Invalid argument(s) +io/file_test: Crash # Invalid argument(s) io/file_typed_data_test: Crash # Invalid argument(s) io/file_uri_test: Crash # Invalid argument(s) -io/file_write_as_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally io/file_write_only_test: Crash # (main()async{asyncSt... cannot handle async/sync*/async* functions -io/http_10_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/http_advanced_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +io/http_10_test: Crash # Internal Error: No default constructor available. +io/http_advanced_test: Crash # Internal Error: No default constructor available. io/http_auth_digest_test: Crash # Invalid argument(s) -io/http_auth_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/http_basic_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +io/http_auth_test: Crash # Invalid argument(s) +io/http_basic_test: Crash # Internal Error: No default constructor available. io/http_bind_test: Crash # (testBindShared(Stri... cannot handle async/sync*/async* functions -io/http_client_connect_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +io/http_client_connect_test: Crash # Internal Error: No default constructor available. io/http_client_exception_test: Crash # Internal Error: No default constructor available. io/http_client_request_test: Crash # Internal Error: No default constructor available. -io/http_client_stays_alive_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +io/http_client_stays_alive_test: Crash # Internal Error: No default constructor available. io/http_close_test: Crash # Internal Error: No default constructor available. io/http_compression_test: Crash # Internal Error: No default constructor available. io/http_connection_close_test: Crash # Invalid argument(s) @@ -231,7 +202,7 @@ io/http_cookie_date_test: Crash # Invalid argument(s) io/http_cookie_test: Crash # Internal Error: No default constructor available. io/http_cross_process_test: Crash # Internal Error: No default constructor available. io/http_date_test: Crash # Invalid argument(s) -io/http_detach_socket_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +io/http_detach_socket_test: Crash # Internal Error: No default constructor available. io/http_head_test: Crash # Internal Error: No default constructor available. io/http_headers_state_test: Crash # Internal Error: No default constructor available. io/http_headers_test: Crash # Internal Error: No default constructor available. @@ -239,124 +210,80 @@ io/http_ipv6_test: Crash # Invalid argument(s) io/http_keep_alive_test: Crash # Internal Error: No default constructor available. io/http_no_reason_phrase_test: Crash # Invalid argument(s) io/http_outgoing_size_test: Crash # Internal Error: No default constructor available. -io/http_parser_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +io/http_parser_test: Crash # Invalid argument(s) io/http_proxy_configuration_test: Crash # Internal Error: No default constructor available. io/http_proxy_test: Crash # Invalid argument(s) -io/http_read_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +io/http_read_test: Crash # Internal Error: No default constructor available. io/http_redirect_test: Crash # Invalid argument(s) -io/http_request_pipeling_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +io/http_request_pipeling_test: Crash # Internal Error: No default constructor available. io/http_requested_uri_test: Crash # Internal Error: No default constructor available. -io/http_response_deadline_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/http_reuse_server_port_test: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -io/http_server_close_response_after_error_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/http_server_early_client_close2_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/http_server_early_client_close_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/http_server_idle_timeout_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +io/http_response_deadline_test: Crash # Internal Error: No default constructor available. +io/http_reuse_server_port_test: Crash # Internal Error: No default constructor available. +io/http_server_close_response_after_error_test: Crash # Internal Error: No default constructor available. +io/http_server_early_client_close2_test: Crash # Internal Error: No default constructor available. +io/http_server_early_client_close_test: Crash # Internal Error: No default constructor available. +io/http_server_idle_timeout_test: Crash # Internal Error: No default constructor available. io/http_server_response_test: Crash # Internal Error: No default constructor available. io/http_server_test: Crash # Internal Error: No default constructor available. io/http_session_test: Crash # Internal Error: No default constructor available. -io/http_shutdown_test: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally +io/http_shutdown_test: Crash # Internal Error: No default constructor available. io/http_stream_close_test: Crash # Invalid argument(s) io/https_bad_certificate_test: Crash # (main()async{var cli... cannot handle async/sync*/async* functions io/https_client_certificate_test: Crash # Invalid argument(s) io/https_client_exception_test: Crash # Invalid argument(s) -io/https_server_test: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -io/https_unauthorized_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/io_sink_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +io/https_server_test: Crash # Internal Error: No default constructor available. +io/https_unauthorized_test: Crash # Internal Error: No default constructor available. io/issue_22636_test: Crash # (test()async{server=... cannot handle async/sync*/async* functions io/issue_22637_test: Crash # (test()async{server=... cannot handle async/sync*/async* functions -io/link_async_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +io/link_async_test: Crash # Invalid argument(s) io/link_test: Crash # Invalid argument(s) io/link_uri_test: Crash # Invalid argument(s) -io/observatory_test: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally +io/observatory_test: Crash # Invalid argument(s) io/parent_test: Crash # Invalid argument(s) -io/pipe_server_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally io/platform_resolved_executable_test/00: Crash # Internal Error: No default constructor available. -io/platform_resolved_executable_test/01: Crash # (try {test(tempDir);}finally {tempDir.deleteSync(recursive:true);}): try/finally -io/platform_resolved_executable_test/02: Crash # (try {test(tempDir);}finally {tempDir.deleteSync(recursive:true);}): try/finally +io/platform_resolved_executable_test/01: Crash # Invalid argument(s) +io/platform_resolved_executable_test/02: Crash # Invalid argument(s) io/platform_resolved_executable_test/03: Crash # Internal Error: No default constructor available. -io/platform_resolved_executable_test/04: Crash # (try {test(tempDir);}finally {tempDir.deleteSync(recursive:true);}): try/finally -io/platform_resolved_executable_test/05: Crash # (try {test(tempDir);}finally {tempDir.deleteSync(recursive:true);}): try/finally +io/platform_resolved_executable_test/04: Crash # Invalid argument(s) +io/platform_resolved_executable_test/05: Crash # Invalid argument(s) io/platform_resolved_executable_test/06: Crash # Internal Error: No default constructor available. io/platform_resolved_executable_test/none: Crash # Internal Error: No default constructor available. -io/platform_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/print_sync_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/process_detached_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +io/platform_test: Crash # Internal Error: No default constructor available. io/process_environment_test: Crash # Internal Error: No default constructor available. -io/process_kill_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/process_non_ascii_test: Crash # (try {opened.writeFr... try/finally io/process_path_environment_test: Crash # Internal Error: No default constructor available. -io/process_pid_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/process_shell_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/raw_datagram_read_all_test: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally -io/raw_datagram_socket_test: Crash # (try {return f(arg);}finally {Zone._leave(old);}): try/finally io/raw_secure_server_closing_test: Crash # Invalid argument(s) -io/raw_secure_server_socket_argument_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/raw_secure_server_socket_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/raw_secure_socket_pause_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/raw_secure_socket_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/raw_server_socket_cancel_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/raw_socket_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +io/raw_secure_server_socket_test: Crash # Invalid argument(s) +io/raw_secure_socket_pause_test: Crash # Internal Error: No default constructor available. +io/raw_secure_socket_test: Crash # Internal Error: No default constructor available. +io/raw_socket_test: Crash # Invalid argument(s) io/raw_socket_typed_data_test: Crash # Invalid argument(s) -io/read_into_const_list_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/regress_10026_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/regress_21160_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/regress_21987_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/regress_7191_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/regress_7679_test: Crash # (try {opened.writeFr... try/finally io/regress_8828_test: Crash # Internal Error: No default constructor available. io/regress_9194_test: Crash # Internal Error: No default constructor available. -io/resolve_symbolic_links_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/secure_bad_certificate_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/secure_builtin_roots_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/secure_client_raw_server_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/secure_client_server_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/secure_multiple_client_server_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/secure_server_client_certificate_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/secure_server_client_no_certificate_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +io/resolve_symbolic_links_test: Crash # Invalid argument(s) +io/secure_builtin_roots_test: Crash # Invalid argument(s) io/secure_server_closing_test: Crash # Invalid argument(s) io/secure_server_socket_test: Crash # Invalid argument(s) -io/secure_session_resume_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/secure_socket_alpn_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/secure_socket_argument_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/secure_socket_bad_data_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/secure_socket_renegotiate_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/secure_socket_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/secure_unauthorized_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/server_socket_reference_issue21383_and_issue21384_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/signals_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +io/secure_socket_test: Crash # Internal Error: No default constructor available. io/skipping_dart2js_compilations_test: Crash # Invalid argument(s) -io/socket_bind_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/socket_close_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/socket_exception_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/socket_invalid_arguments_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/socket_ipv6_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/socket_many_connections_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +io/socket_bind_test: Crash # (testListenCloseList... cannot handle async/sync*/async* functions +io/socket_exception_test: Crash # Invalid argument(s) io/socket_source_address_test: Crash # (Future testConnect(... cannot handle async/sync*/async* functions -io/socket_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally io/socket_upgrade_to_secure_test: Crash # Invalid argument(s) io/stdin_sync_test: Crash # Internal Error: No default constructor available. -io/stdout_close_test: Crash # (try {var data;var l... try/finally -io/stdout_stderr_non_blocking_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/stdout_stderr_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/stream_pipe_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally io/test_extension_fail_test: Crash # Invalid argument(s) io/test_extension_test: Crash # Invalid argument(s) -io/test_runner_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +io/test_runner_test: Crash # Internal Error: No default constructor available. io/uri_platform_test: Crash # Invalid argument(s) -io/web_socket_error_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/web_socket_ping_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/web_socket_pipe_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/web_socket_protocol_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/web_socket_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/web_socket_typed_data_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/windows_environment_test: Crash # (try {opened.writeFr... try/finally -io/windows_file_system_async_links_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/windows_file_system_links_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -io/zlib_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +io/web_socket_error_test: Crash # Internal Error: No default constructor available. +io/web_socket_ping_test: Crash # Internal Error: No default constructor available. +io/web_socket_pipe_test: Crash # Internal Error: No default constructor available. +io/web_socket_protocol_test: Crash # Internal Error: No default constructor available. +io/web_socket_test: Crash # Internal Error: No default constructor available. +io/web_socket_typed_data_test: Crash # Internal Error: No default constructor available. +io/windows_environment_test: Crash # Invalid argument(s) priority_queue_stress_test: RuntimeError # receiver.get$_collection$_nums is not a function slowpath_safepoints_test: RuntimeError # Cannot read property 'prototype' of undefined status_expression_test: RuntimeError # Please triage this failure. -typed_array_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally -verbose_gc_to_bmu_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +typed_array_test: RuntimeError # receiver.get$_collection$_nums is not a function +verbose_gc_to_bmu_test: Crash # Invalid argument(s) verified_mem_test: RuntimeError # Please triage this failure. diff --git a/tests/utils/utils.status b/tests/utils/utils.status index 4d57c0e47a0..5bb2a3a753d 100644 --- a/tests/utils/utils.status +++ b/tests/utils/utils.status @@ -30,5 +30,5 @@ source_mirrors_test: Pass, RuntimeError # Issue 17662 [ $compiler == dart2js && $cps_ir ] dummy_compiler_test: Crash # Internal Error: No default constructor available. -recursive_import_test: Crash # (try {return f(arg1,arg2);}finally {Zone._leave(old);}): try/finally +recursive_import_test: Crash # Internal Error: No default constructor available. source_mirrors_test: Crash # Internal Error: No default constructor available.