blob: 76d3316507c0636d0b7ff0cba1b2f8e8155beea4 [file] [log] [blame] [edit]
>>> (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]),
);