-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge 66f0fc6 into dev
- Loading branch information
Showing
32 changed files
with
1,010 additions
and
220 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// Copyright (c) 2024, the Dart project authors. Please see the AUTHORS file | ||
// for details. All rights reserved. Use of this source code is governed by a | ||
// BSD-style license that can be found in the LICENSE file. | ||
|
||
part of 'fragment.dart'; | ||
|
||
/// A fragment with function syntax, i.e. a method, getter, setter, constructor, | ||
/// or factory. | ||
sealed class FunctionFragment { | ||
FunctionBodyBuildingContext createFunctionBodyBuildingContext(); | ||
} | ||
|
||
abstract class FunctionBodyBuildingContext { | ||
/// Returns the [MemberKind] for the function body being built. | ||
MemberKind get memberKind; | ||
|
||
/// Returns `true` if the function body should be built. | ||
// TODO(johnniwinther): Avoid the need for this. | ||
bool get shouldBuild; | ||
|
||
BodyBuilderContext createBodyBuilderContext( | ||
{required bool inOutlineBuildingPhase, | ||
required bool inMetadata, | ||
required bool inConstFields}); | ||
|
||
LookupScope computeTypeParameterScope(LookupScope enclosingScope); | ||
|
||
LocalScope computeFormalParameterScope(LookupScope typeParameterScope); | ||
|
||
VariableDeclaration? get thisVariable; | ||
|
||
List<TypeParameter>? get thisTypeParameters; | ||
|
||
InferenceDataForTesting? get inferenceDataForTesting; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.