| Commit-Queue | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
libraryBuilder
.loader
.target
.backendTarget
.flags
.isClosureContextLoweringEnabled
?
// Coverage-ignore(suite): Not run.
(new PositionalParameter(
cosmeticName: syntheticThisName,
type: _computeThisType(declarationBuilder, typeArguments),
isFinal: true,
isLowered: true,
)..fileOffset = fileOffset)
: (new VariableDeclarationImpl(
syntheticThisName,
isFinal: true,
type: _computeThisType(declarationBuilder, typeArguments),
)
..fileOffset = fileOffset
..isLowered = true);Not for this CL: Maybe we should have an `InternalVariableCreator` interface through which we create all variables.
isClosureContextLoweringEnabled: _fragment
.builder
.libraryBuilderUse `libraryBuilder` instead.
Not for this CL: Maybe add an `isClosureContextLoweringEnabled` getter on `SourceLoader` for easier access.
isClosureContextLoweringEnabled: _fragment
.builder
.libraryBuilderUse `enclosingClassBuilder.libraryBuilder` instead.
builder.declarationBuilder as SourceClassBuilder,Extract a `SourceClassBuilder classBuilder = builder.declarationBuilder as SourceClassBuilder;` variable and use `classBuilder.libraryBuilder` instead of `_fragment.builder.libraryBuilder` below.
isClosureContextLoweringEnabled: _fragment
.builder
.libraryBuilderUse `libraryBuilder` instead.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |