blob: d7b4afe05baee53376a986a4779bf9ce41aa457f [file] [log] [blame]
>>> (indent 2)
Iterable<VariableDeclaration> createCapturedTryVariables() => Iterable
.generate(
capturedTryDepth,
(depth) =>
VariableDeclaration(ContinuationVariables.savedTryContextVar(depth)));
<<<
Iterable<VariableDeclaration> createCapturedTryVariables() =>
Iterable.generate(
capturedTryDepth,
(depth) => VariableDeclaration(
ContinuationVariables.savedTryContextVar(depth)));
>>> (indent 10)
TypeParameterElementImpl typeParameter = TypeParameterElementImpl
.forNode(AstTestFactory.identifier3(parameterNames[i]));
<<<
TypeParameterElementImpl typeParameter =
TypeParameterElementImpl.forNode(
AstTestFactory.identifier3(parameterNames[i]));