-
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 1d7b790 into dev
- Loading branch information
Showing
10 changed files
with
205 additions
and
123 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
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,36 @@ | ||
// 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'; | ||
|
||
class ConstructorName { | ||
/// The name of the constructor itself. | ||
/// | ||
/// For an unnamed constructor, this is ''. | ||
final String name; | ||
|
||
/// The offset of the name of the constructor, if the constructor is not | ||
/// unnamed. | ||
final int? nameOffset; | ||
|
||
/// The name of the constructor including the enclosing declaration name. | ||
final String fullName; | ||
|
||
/// The offset at which [fullName] occurs. | ||
/// | ||
/// This is used in messages to put the `^` at the start of the [fullName]. | ||
final int fullNameOffset; | ||
|
||
/// The number of characters of [fullName] that occurs at [fullNameOffset]. | ||
/// | ||
/// This is used in messages to put the right amount of `^` under the name. | ||
final int fullNameLength; | ||
|
||
ConstructorName( | ||
{required this.name, | ||
required this.nameOffset, | ||
required this.fullName, | ||
required this.fullNameOffset, | ||
required this.fullNameLength}); | ||
} |
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.