blob: 18134016fa5d04def9ae4c25d214e4e675df40d3 [file] [log] [blame]
// 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.
import 'package:test_reflective_loader/test_reflective_loader.dart';
import '../../dart/resolution/node_text_expectations.dart';
import '../elements_base.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(DuplicateDeclarationElementTest_keepLinking);
defineReflectiveTests(DuplicateDeclarationElementTest_fromBytes);
defineReflectiveTests(UpdateNodeTextExpectations);
});
}
abstract class DuplicateDeclarationElementTest extends ElementsBaseTest {
test_duplicateDeclaration_class() async {
var library = await buildLibrary(r'''
class A {
static const f01 = 0;
static const f02 = f01;
}
class A {
static const f11 = 0;
static const f12 = f11;
}
class A {
static const f21 = 0;
static const f22 = f21;
}
''');
checkElementText(library, r'''
library
reference: <testLibrary>
definingUnit: <testLibraryFragment>
units
<testLibraryFragment>
enclosingElement3: <null>
classes
class A @6
reference: <testLibraryFragment>::@class::A::@def::0
enclosingElement3: <testLibraryFragment>
fields
static const f01 @25
reference: <testLibraryFragment>::@class::A::@def::0::@field::f01
enclosingElement3: <testLibraryFragment>::@class::A::@def::0
type: int
shouldUseTypeForInitializerInference: false
constantInitializer
IntegerLiteral
literal: 0 @31
staticType: int
static const f02 @49
reference: <testLibraryFragment>::@class::A::@def::0::@field::f02
enclosingElement3: <testLibraryFragment>::@class::A::@def::0
type: int
shouldUseTypeForInitializerInference: false
constantInitializer
SimpleIdentifier
token: f01 @55
staticElement: <testLibraryFragment>::@class::A::@def::0::@getter::f01
element: <testLibraryFragment>::@class::A::@def::0::@getter::f01#element
staticType: int
constructors
synthetic @-1
reference: <testLibraryFragment>::@class::A::@def::0::@constructor::new
enclosingElement3: <testLibraryFragment>::@class::A::@def::0
accessors
synthetic static get f01 @-1
reference: <testLibraryFragment>::@class::A::@def::0::@getter::f01
enclosingElement3: <testLibraryFragment>::@class::A::@def::0
returnType: int
synthetic static get f02 @-1
reference: <testLibraryFragment>::@class::A::@def::0::@getter::f02
enclosingElement3: <testLibraryFragment>::@class::A::@def::0
returnType: int
class A @69
reference: <testLibraryFragment>::@class::A::@def::1
enclosingElement3: <testLibraryFragment>
fields
static const f11 @88
reference: <testLibraryFragment>::@class::A::@def::1::@field::f11
enclosingElement3: <testLibraryFragment>::@class::A::@def::1
type: int
shouldUseTypeForInitializerInference: false
constantInitializer
IntegerLiteral
literal: 0 @94
staticType: int
static const f12 @112
reference: <testLibraryFragment>::@class::A::@def::1::@field::f12
enclosingElement3: <testLibraryFragment>::@class::A::@def::1
type: int
shouldUseTypeForInitializerInference: false
constantInitializer
SimpleIdentifier
token: f11 @118
staticElement: <testLibraryFragment>::@class::A::@def::1::@getter::f11
element: <testLibraryFragment>::@class::A::@def::1::@getter::f11#element
staticType: int
constructors
synthetic @-1
reference: <testLibraryFragment>::@class::A::@def::1::@constructor::new
enclosingElement3: <testLibraryFragment>::@class::A::@def::1
accessors
synthetic static get f11 @-1
reference: <testLibraryFragment>::@class::A::@def::1::@getter::f11
enclosingElement3: <testLibraryFragment>::@class::A::@def::1
returnType: int
synthetic static get f12 @-1
reference: <testLibraryFragment>::@class::A::@def::1::@getter::f12
enclosingElement3: <testLibraryFragment>::@class::A::@def::1
returnType: int
class A @132
reference: <testLibraryFragment>::@class::A::@def::2
enclosingElement3: <testLibraryFragment>
fields
static const f21 @151
reference: <testLibraryFragment>::@class::A::@def::2::@field::f21
enclosingElement3: <testLibraryFragment>::@class::A::@def::2
type: int
shouldUseTypeForInitializerInference: false
constantInitializer
IntegerLiteral
literal: 0 @157
staticType: int
static const f22 @175
reference: <testLibraryFragment>::@class::A::@def::2::@field::f22
enclosingElement3: <testLibraryFragment>::@class::A::@def::2
type: int
shouldUseTypeForInitializerInference: false
constantInitializer
SimpleIdentifier
token: f21 @181
staticElement: <testLibraryFragment>::@class::A::@def::2::@getter::f21
element: <testLibraryFragment>::@class::A::@def::2::@getter::f21#element
staticType: int
constructors
synthetic @-1
reference: <testLibraryFragment>::@class::A::@def::2::@constructor::new
enclosingElement3: <testLibraryFragment>::@class::A::@def::2
accessors
synthetic static get f21 @-1
reference: <testLibraryFragment>::@class::A::@def::2::@getter::f21
enclosingElement3: <testLibraryFragment>::@class::A::@def::2
returnType: int
synthetic static get f22 @-1
reference: <testLibraryFragment>::@class::A::@def::2::@getter::f22
enclosingElement3: <testLibraryFragment>::@class::A::@def::2
returnType: int
----------------------------------------
library
reference: <testLibrary>
fragments
<testLibraryFragment>
element: <testLibrary>
classes
class A @6
reference: <testLibraryFragment>::@class::A::@def::0
element: <testLibrary>::@class::A::@def::0
fields
hasInitializer f01 @25
reference: <testLibraryFragment>::@class::A::@def::0::@field::f01
element: <testLibraryFragment>::@class::A::@def::0::@field::f01#element
getter2: <testLibraryFragment>::@class::A::@def::0::@getter::f01
hasInitializer f02 @49
reference: <testLibraryFragment>::@class::A::@def::0::@field::f02
element: <testLibraryFragment>::@class::A::@def::0::@field::f02#element
getter2: <testLibraryFragment>::@class::A::@def::0::@getter::f02
constructors
synthetic new
reference: <testLibraryFragment>::@class::A::@def::0::@constructor::new
element: <testLibraryFragment>::@class::A::@def::0::@constructor::new#element
typeName: A
getters
synthetic get f01
reference: <testLibraryFragment>::@class::A::@def::0::@getter::f01
element: <testLibraryFragment>::@class::A::@def::0::@getter::f01#element
synthetic get f02
reference: <testLibraryFragment>::@class::A::@def::0::@getter::f02
element: <testLibraryFragment>::@class::A::@def::0::@getter::f02#element
class A @69
reference: <testLibraryFragment>::@class::A::@def::1
element: <testLibrary>::@class::A::@def::1
fields
hasInitializer f11 @88
reference: <testLibraryFragment>::@class::A::@def::1::@field::f11
element: <testLibraryFragment>::@class::A::@def::1::@field::f11#element
getter2: <testLibraryFragment>::@class::A::@def::1::@getter::f11
hasInitializer f12 @112
reference: <testLibraryFragment>::@class::A::@def::1::@field::f12
element: <testLibraryFragment>::@class::A::@def::1::@field::f12#element
getter2: <testLibraryFragment>::@class::A::@def::1::@getter::f12
constructors
synthetic new
reference: <testLibraryFragment>::@class::A::@def::1::@constructor::new
element: <testLibraryFragment>::@class::A::@def::1::@constructor::new#element
typeName: A
getters
synthetic get f11
reference: <testLibraryFragment>::@class::A::@def::1::@getter::f11
element: <testLibraryFragment>::@class::A::@def::1::@getter::f11#element
synthetic get f12
reference: <testLibraryFragment>::@class::A::@def::1::@getter::f12
element: <testLibraryFragment>::@class::A::@def::1::@getter::f12#element
class A @132
reference: <testLibraryFragment>::@class::A::@def::2
element: <testLibrary>::@class::A::@def::2
fields
hasInitializer f21 @151
reference: <testLibraryFragment>::@class::A::@def::2::@field::f21
element: <testLibraryFragment>::@class::A::@def::2::@field::f21#element
getter2: <testLibraryFragment>::@class::A::@def::2::@getter::f21
hasInitializer f22 @175
reference: <testLibraryFragment>::@class::A::@def::2::@field::f22
element: <testLibraryFragment>::@class::A::@def::2::@field::f22#element
getter2: <testLibraryFragment>::@class::A::@def::2::@getter::f22
constructors
synthetic new
reference: <testLibraryFragment>::@class::A::@def::2::@constructor::new
element: <testLibraryFragment>::@class::A::@def::2::@constructor::new#element
typeName: A
getters
synthetic get f21
reference: <testLibraryFragment>::@class::A::@def::2::@getter::f21
element: <testLibraryFragment>::@class::A::@def::2::@getter::f21#element
synthetic get f22
reference: <testLibraryFragment>::@class::A::@def::2::@getter::f22
element: <testLibraryFragment>::@class::A::@def::2::@getter::f22#element
classes
class A
reference: <testLibrary>::@class::A::@def::0
firstFragment: <testLibraryFragment>::@class::A::@def::0
fields
static const hasInitializer f01
firstFragment: <testLibraryFragment>::@class::A::@def::0::@field::f01
type: int
getter: <testLibraryFragment>::@class::A::@def::0::@getter::f01#element
static const hasInitializer f02
firstFragment: <testLibraryFragment>::@class::A::@def::0::@field::f02
type: int
getter: <testLibraryFragment>::@class::A::@def::0::@getter::f02#element
constructors
synthetic new
firstFragment: <testLibraryFragment>::@class::A::@def::0::@constructor::new
getters
synthetic static get f01
firstFragment: <testLibraryFragment>::@class::A::@def::0::@getter::f01
synthetic static get f02
firstFragment: <testLibraryFragment>::@class::A::@def::0::@getter::f02
class A
reference: <testLibrary>::@class::A::@def::1
firstFragment: <testLibraryFragment>::@class::A::@def::1
fields
static const hasInitializer f11
firstFragment: <testLibraryFragment>::@class::A::@def::1::@field::f11
type: int
getter: <testLibraryFragment>::@class::A::@def::1::@getter::f11#element
static const hasInitializer f12
firstFragment: <testLibraryFragment>::@class::A::@def::1::@field::f12
type: int
getter: <testLibraryFragment>::@class::A::@def::1::@getter::f12#element
constructors
synthetic new
firstFragment: <testLibraryFragment>::@class::A::@def::1::@constructor::new
getters
synthetic static get f11
firstFragment: <testLibraryFragment>::@class::A::@def::1::@getter::f11
synthetic static get f12
firstFragment: <testLibraryFragment>::@class::A::@def::1::@getter::f12
class A
reference: <testLibrary>::@class::A::@def::2
firstFragment: <testLibraryFragment>::@class::A::@def::2
fields
static const hasInitializer f21
firstFragment: <testLibraryFragment>::@class::A::@def::2::@field::f21
type: int
getter: <testLibraryFragment>::@class::A::@def::2::@getter::f21#element
static const hasInitializer f22
firstFragment: <testLibraryFragment>::@class::A::@def::2::@field::f22
type: int
getter: <testLibraryFragment>::@class::A::@def::2::@getter::f22#element
constructors
synthetic new
firstFragment: <testLibraryFragment>::@class::A::@def::2::@constructor::new
getters
synthetic static get f21
firstFragment: <testLibraryFragment>::@class::A::@def::2::@getter::f21
synthetic static get f22
firstFragment: <testLibraryFragment>::@class::A::@def::2::@getter::f22
''');
}
test_duplicateDeclaration_class_constructor_unnamed() async {
var library = await buildLibrary(r'''
class A {
A.named();
A.named();
}
''');
checkElementText(library, r'''
library
reference: <testLibrary>
definingUnit: <testLibraryFragment>
units
<testLibraryFragment>
enclosingElement3: <null>
classes
class A @6
reference: <testLibraryFragment>::@class::A
enclosingElement3: <testLibraryFragment>
constructors
named @14
reference: <testLibraryFragment>::@class::A::@constructor::named::@def::0
enclosingElement3: <testLibraryFragment>::@class::A
periodOffset: 13
nameEnd: 19
named @27
reference: <testLibraryFragment>::@class::A::@constructor::named::@def::1
enclosingElement3: <testLibraryFragment>::@class::A
periodOffset: 26
nameEnd: 32
----------------------------------------
library
reference: <testLibrary>
fragments
<testLibraryFragment>
element: <testLibrary>
classes
class A @6
reference: <testLibraryFragment>::@class::A
element: <testLibrary>::@class::A
constructors
named @14
reference: <testLibraryFragment>::@class::A::@constructor::named::@def::0
element: <testLibraryFragment>::@class::A::@constructor::named::@def::0#element
typeName: A
typeNameOffset: 12
periodOffset: 13
named @27
reference: <testLibraryFragment>::@class::A::@constructor::named::@def::1
element: <testLibraryFragment>::@class::A::@constructor::named::@def::1#element
typeName: A
typeNameOffset: 25
periodOffset: 26
classes
class A
reference: <testLibrary>::@class::A
firstFragment: <testLibraryFragment>::@class::A
constructors
named
firstFragment: <testLibraryFragment>::@class::A::@constructor::named::@def::0
named
firstFragment: <testLibraryFragment>::@class::A::@constructor::named::@def::1
''');
}
test_duplicateDeclaration_class_field() async {
var library = await buildLibrary(r'''
class A {
int foo;
double foo;
}
''');
configuration.withPropertyLinking = true;
checkElementText(library, r'''
library
reference: <testLibrary>
definingUnit: <testLibraryFragment>
units
<testLibraryFragment>
enclosingElement3: <null>
classes
class A @6
reference: <testLibraryFragment>::@class::A
enclosingElement3: <testLibraryFragment>
fields
foo @16
reference: <testLibraryFragment>::@class::A::@field::foo::@def::0
enclosingElement3: <testLibraryFragment>::@class::A
type: int
id: field_0
getter: getter_0
setter: setter_0
foo @30
reference: <testLibraryFragment>::@class::A::@field::foo::@def::1
enclosingElement3: <testLibraryFragment>::@class::A
type: double
id: field_1
getter: getter_1
setter: setter_1
constructors
synthetic @-1
reference: <testLibraryFragment>::@class::A::@constructor::new
enclosingElement3: <testLibraryFragment>::@class::A
accessors
synthetic get foo @-1
reference: <testLibraryFragment>::@class::A::@getter::foo::@def::0
enclosingElement3: <testLibraryFragment>::@class::A
returnType: int
id: getter_0
variable: field_0
synthetic set foo= @-1
reference: <testLibraryFragment>::@class::A::@setter::foo::@def::0
enclosingElement3: <testLibraryFragment>::@class::A
parameters
requiredPositional _foo @-1
type: int
returnType: void
id: setter_0
variable: field_0
synthetic get foo @-1
reference: <testLibraryFragment>::@class::A::@getter::foo::@def::1
enclosingElement3: <testLibraryFragment>::@class::A
returnType: double
id: getter_1
variable: field_1
synthetic set foo= @-1
reference: <testLibraryFragment>::@class::A::@setter::foo::@def::1
enclosingElement3: <testLibraryFragment>::@class::A
parameters
requiredPositional _foo @-1
type: double
returnType: void
id: setter_1
variable: field_1
----------------------------------------
library
reference: <testLibrary>
fragments
<testLibraryFragment>
element: <testLibrary>
classes
class A @6
reference: <testLibraryFragment>::@class::A
element: <testLibrary>::@class::A
fields
foo @16
reference: <testLibraryFragment>::@class::A::@field::foo::@def::0
element: <testLibraryFragment>::@class::A::@field::foo::@def::0#element
getter2: <testLibraryFragment>::@class::A::@getter::foo::@def::0
setter2: <testLibraryFragment>::@class::A::@setter::foo::@def::0
foo @30
reference: <testLibraryFragment>::@class::A::@field::foo::@def::1
element: <testLibraryFragment>::@class::A::@field::foo::@def::1#element
getter2: <testLibraryFragment>::@class::A::@getter::foo::@def::1
setter2: <testLibraryFragment>::@class::A::@setter::foo::@def::1
constructors
synthetic new
reference: <testLibraryFragment>::@class::A::@constructor::new
element: <testLibraryFragment>::@class::A::@constructor::new#element
typeName: A
getters
synthetic get foo
reference: <testLibraryFragment>::@class::A::@getter::foo::@def::0
element: <testLibraryFragment>::@class::A::@getter::foo::@def::0#element
synthetic get foo
reference: <testLibraryFragment>::@class::A::@getter::foo::@def::1
element: <testLibraryFragment>::@class::A::@getter::foo::@def::1#element
setters
synthetic set foo
reference: <testLibraryFragment>::@class::A::@setter::foo::@def::0
element: <testLibraryFragment>::@class::A::@setter::foo::@def::0#element
formalParameters
<null-name>
element: <testLibraryFragment>::@class::A::@setter::foo::@def::0::@parameter::_foo#element
synthetic set foo
reference: <testLibraryFragment>::@class::A::@setter::foo::@def::1
element: <testLibraryFragment>::@class::A::@setter::foo::@def::1#element
formalParameters
<null-name>
element: <testLibraryFragment>::@class::A::@setter::foo::@def::1::@parameter::_foo#element
classes
class A
reference: <testLibrary>::@class::A
firstFragment: <testLibraryFragment>::@class::A
fields
foo
firstFragment: <testLibraryFragment>::@class::A::@field::foo::@def::0
type: int
getter: <testLibraryFragment>::@class::A::@getter::foo::@def::0#element
setter: <testLibraryFragment>::@class::A::@setter::foo::@def::0#element
foo
firstFragment: <testLibraryFragment>::@class::A::@field::foo::@def::1
type: double
getter: <testLibraryFragment>::@class::A::@getter::foo::@def::1#element
setter: <testLibraryFragment>::@class::A::@setter::foo::@def::1#element
constructors
synthetic new
firstFragment: <testLibraryFragment>::@class::A::@constructor::new
getters
synthetic get foo
firstFragment: <testLibraryFragment>::@class::A::@getter::foo::@def::0
synthetic get foo
firstFragment: <testLibraryFragment>::@class::A::@getter::foo::@def::1
setters
synthetic set foo
firstFragment: <testLibraryFragment>::@class::A::@setter::foo::@def::0
formalParameters
requiredPositional _foo
type: int
synthetic set foo
firstFragment: <testLibraryFragment>::@class::A::@setter::foo::@def::1
formalParameters
requiredPositional _foo
type: double
''');
}
test_duplicateDeclaration_class_method() async {
var library = await buildLibrary(r'''
class A {
void foo() {}
void foo() {}
}
''');
checkElementText(library, r'''
library
reference: <testLibrary>
definingUnit: <testLibraryFragment>
units
<testLibraryFragment>
enclosingElement3: <null>
classes
class A @6
reference: <testLibraryFragment>::@class::A
enclosingElement3: <testLibraryFragment>
constructors
synthetic @-1
reference: <testLibraryFragment>::@class::A::@constructor::new
enclosingElement3: <testLibraryFragment>::@class::A
methods
foo @17
reference: <testLibraryFragment>::@class::A::@method::foo::@def::0
enclosingElement3: <testLibraryFragment>::@class::A
returnType: void
foo @33
reference: <testLibraryFragment>::@class::A::@method::foo::@def::1
enclosingElement3: <testLibraryFragment>::@class::A
returnType: void
----------------------------------------
library
reference: <testLibrary>
fragments
<testLibraryFragment>
element: <testLibrary>
classes
class A @6
reference: <testLibraryFragment>::@class::A
element: <testLibrary>::@class::A
constructors
synthetic new
reference: <testLibraryFragment>::@class::A::@constructor::new
element: <testLibraryFragment>::@class::A::@constructor::new#element
typeName: A
methods
foo @17
reference: <testLibraryFragment>::@class::A::@method::foo::@def::0
element: <testLibraryFragment>::@class::A::@method::foo::@def::0#element
foo @33
reference: <testLibraryFragment>::@class::A::@method::foo::@def::1
element: <testLibraryFragment>::@class::A::@method::foo::@def::1#element
classes
class A
reference: <testLibrary>::@class::A
firstFragment: <testLibraryFragment>::@class::A
constructors
synthetic new
firstFragment: <testLibraryFragment>::@class::A::@constructor::new
methods
foo
reference: <testLibrary>::@class::A::@method::foo::@def::0
firstFragment: <testLibraryFragment>::@class::A::@method::foo::@def::0
foo
reference: <testLibrary>::@class::A::@method::foo::@def::1
firstFragment: <testLibraryFragment>::@class::A::@method::foo::@def::1
''');
}
test_duplicateDeclaration_classTypeAlias() async {
var library = await buildLibrary(r'''
class A {}
class B {}
class X = A with M;
class X = B with M;
mixin M {}
''');
checkElementText(library, r'''
library
reference: <testLibrary>
definingUnit: <testLibraryFragment>
units
<testLibraryFragment>
enclosingElement3: <null>
classes
class A @6
reference: <testLibraryFragment>::@class::A
enclosingElement3: <testLibraryFragment>
constructors
synthetic @-1
reference: <testLibraryFragment>::@class::A::@constructor::new
enclosingElement3: <testLibraryFragment>::@class::A
class B @17
reference: <testLibraryFragment>::@class::B
enclosingElement3: <testLibraryFragment>
constructors
synthetic @-1
reference: <testLibraryFragment>::@class::B::@constructor::new
enclosingElement3: <testLibraryFragment>::@class::B
class alias X @28
reference: <testLibraryFragment>::@class::X::@def::0
enclosingElement3: <testLibraryFragment>
supertype: A
mixins
M
constructors
synthetic @-1
reference: <testLibraryFragment>::@class::X::@def::0::@constructor::new
enclosingElement3: <testLibraryFragment>::@class::X::@def::0
constantInitializers
SuperConstructorInvocation
superKeyword: super @0
argumentList: ArgumentList
leftParenthesis: ( @0
rightParenthesis: ) @0
staticElement: <testLibraryFragment>::@class::A::@constructor::new
element: <testLibraryFragment>::@class::A::@constructor::new#element
superConstructor: <testLibraryFragment>::@class::A::@constructor::new
class alias X @48
reference: <testLibraryFragment>::@class::X::@def::1
enclosingElement3: <testLibraryFragment>
supertype: B
mixins
M
constructors
synthetic @-1
reference: <testLibraryFragment>::@class::X::@def::1::@constructor::new
enclosingElement3: <testLibraryFragment>::@class::X::@def::1
constantInitializers
SuperConstructorInvocation
superKeyword: super @0
argumentList: ArgumentList
leftParenthesis: ( @0
rightParenthesis: ) @0
staticElement: <testLibraryFragment>::@class::B::@constructor::new
element: <testLibraryFragment>::@class::B::@constructor::new#element
superConstructor: <testLibraryFragment>::@class::B::@constructor::new
mixins
mixin M @68
reference: <testLibraryFragment>::@mixin::M
enclosingElement3: <testLibraryFragment>
superclassConstraints
Object
----------------------------------------
library
reference: <testLibrary>
fragments
<testLibraryFragment>
element: <testLibrary>
classes
class A @6
reference: <testLibraryFragment>::@class::A
element: <testLibrary>::@class::A
constructors
synthetic new
reference: <testLibraryFragment>::@class::A::@constructor::new
element: <testLibraryFragment>::@class::A::@constructor::new#element
typeName: A
class B @17
reference: <testLibraryFragment>::@class::B
element: <testLibrary>::@class::B
constructors
synthetic new
reference: <testLibraryFragment>::@class::B::@constructor::new
element: <testLibraryFragment>::@class::B::@constructor::new#element
typeName: B
class X @28
reference: <testLibraryFragment>::@class::X::@def::0
element: <testLibrary>::@class::X::@def::0
constructors
synthetic new
reference: <testLibraryFragment>::@class::X::@def::0::@constructor::new
element: <testLibraryFragment>::@class::X::@def::0::@constructor::new#element
typeName: X
constantInitializers
SuperConstructorInvocation
superKeyword: super @0
argumentList: ArgumentList
leftParenthesis: ( @0
rightParenthesis: ) @0
staticElement: <testLibraryFragment>::@class::A::@constructor::new
element: <testLibraryFragment>::@class::A::@constructor::new#element
superConstructor: <testLibraryFragment>::@class::A::@constructor::new
class X @48
reference: <testLibraryFragment>::@class::X::@def::1
element: <testLibrary>::@class::X::@def::1
constructors
synthetic new
reference: <testLibraryFragment>::@class::X::@def::1::@constructor::new
element: <testLibraryFragment>::@class::X::@def::1::@constructor::new#element
typeName: X
constantInitializers
SuperConstructorInvocation
superKeyword: super @0
argumentList: ArgumentList
leftParenthesis: ( @0
rightParenthesis: ) @0
staticElement: <testLibraryFragment>::@class::B::@constructor::new
element: <testLibraryFragment>::@class::B::@constructor::new#element
superConstructor: <testLibraryFragment>::@class::B::@constructor::new
mixins
mixin M @68
reference: <testLibraryFragment>::@mixin::M
element: <testLibrary>::@mixin::M
classes
class A
reference: <testLibrary>::@class::A
firstFragment: <testLibraryFragment>::@class::A
constructors
synthetic new
firstFragment: <testLibraryFragment>::@class::A::@constructor::new
class B
reference: <testLibrary>::@class::B
firstFragment: <testLibraryFragment>::@class::B
constructors
synthetic new
firstFragment: <testLibraryFragment>::@class::B::@constructor::new
class alias X
reference: <testLibrary>::@class::X::@def::0
firstFragment: <testLibraryFragment>::@class::X::@def::0
supertype: A
mixins
M
constructors
synthetic new
firstFragment: <testLibraryFragment>::@class::X::@def::0::@constructor::new
superConstructor: <testLibraryFragment>::@class::A::@constructor::new#element
class alias X
reference: <testLibrary>::@class::X::@def::1
firstFragment: <testLibraryFragment>::@class::X::@def::1
supertype: B
mixins
M
constructors
synthetic new
firstFragment: <testLibraryFragment>::@class::X::@def::1::@constructor::new
superConstructor: <testLibraryFragment>::@class::B::@constructor::new#element
mixins
mixin M
reference: <testLibrary>::@mixin::M
firstFragment: <testLibraryFragment>::@mixin::M
superclassConstraints
Object
''');
}
test_duplicateDeclaration_enum() async {
var library = await buildLibrary(r'''
enum E {a, b}
enum E {c, d, e}
''');
checkElementText(library, r'''
library
reference: <testLibrary>
definingUnit: <testLibraryFragment>
units
<testLibraryFragment>
enclosingElement3: <null>
enums
enum E @5
reference: <testLibraryFragment>::@enum::E::@def::0
enclosingElement3: <testLibraryFragment>
supertype: Enum
fields
static const enumConstant a @8
reference: <testLibraryFragment>::@enum::E::@def::0::@field::a
enclosingElement3: <testLibraryFragment>::@enum::E::@def::0
type: E
shouldUseTypeForInitializerInference: false
constantInitializer
InstanceCreationExpression
constructorName: ConstructorName
type: NamedType
name: E @-1
element: <testLibraryFragment>::@enum::E::@def::0
element2: <testLibrary>::@enum::E::@def::0
type: E
staticElement: <testLibraryFragment>::@enum::E::@def::0::@constructor::new
element: <testLibraryFragment>::@enum::E::@def::0::@constructor::new#element
argumentList: ArgumentList
leftParenthesis: ( @0
rightParenthesis: ) @0
staticType: E
static const enumConstant b @11
reference: <testLibraryFragment>::@enum::E::@def::0::@field::b
enclosingElement3: <testLibraryFragment>::@enum::E::@def::0
type: E
shouldUseTypeForInitializerInference: false
constantInitializer
InstanceCreationExpression
constructorName: ConstructorName
type: NamedType
name: E @-1
element: <testLibraryFragment>::@enum::E::@def::0
element2: <testLibrary>::@enum::E::@def::0
type: E
staticElement: <testLibraryFragment>::@enum::E::@def::0::@constructor::new
element: <testLibraryFragment>::@enum::E::@def::0::@constructor::new#element
argumentList: ArgumentList
leftParenthesis: ( @0
rightParenthesis: ) @0
staticType: E
synthetic static const values @-1
reference: <testLibraryFragment>::@enum::E::@def::0::@field::values
enclosingElement3: <testLibraryFragment>::@enum::E::@def::0
type: List<E>
constantInitializer
ListLiteral
leftBracket: [ @0
elements
SimpleIdentifier
token: a @-1
staticElement: <testLibraryFragment>::@enum::E::@def::0::@getter::a
element: <testLibraryFragment>::@enum::E::@def::0::@getter::a#element
staticType: E
SimpleIdentifier
token: b @-1
staticElement: <testLibraryFragment>::@enum::E::@def::0::@getter::b
element: <testLibraryFragment>::@enum::E::@def::0::@getter::b#element
staticType: E
rightBracket: ] @0
staticType: List<E>
constructors
synthetic const @-1
reference: <testLibraryFragment>::@enum::E::@def::0::@constructor::new
enclosingElement3: <testLibraryFragment>::@enum::E::@def::0
accessors
synthetic static get a @-1
reference: <testLibraryFragment>::@enum::E::@def::0::@getter::a
enclosingElement3: <testLibraryFragment>::@enum::E::@def::0
returnType: E
synthetic static get b @-1
reference: <testLibraryFragment>::@enum::E::@def::0::@getter::b
enclosingElement3: <testLibraryFragment>::@enum::E::@def::0
returnType: E
synthetic static get values @-1
reference: <testLibraryFragment>::@enum::E::@def::0::@getter::values
enclosingElement3: <testLibraryFragment>::@enum::E::@def::0
returnType: List<E>
enum E @19
reference: <testLibraryFragment>::@enum::E::@def::1
enclosingElement3: <testLibraryFragment>
supertype: Enum
fields
static const enumConstant c @22
reference: <testLibraryFragment>::@enum::E::@def::1::@field::c
enclosingElement3: <testLibraryFragment>::@enum::E::@def::1
type: E
shouldUseTypeForInitializerInference: false
constantInitializer
InstanceCreationExpression
constructorName: ConstructorName
type: NamedType
name: E @-1
element: <testLibraryFragment>::@enum::E::@def::0
element2: <testLibrary>::@enum::E::@def::0
type: E
staticElement: <testLibraryFragment>::@enum::E::@def::0::@constructor::new
element: <testLibraryFragment>::@enum::E::@def::0::@constructor::new#element
argumentList: ArgumentList
leftParenthesis: ( @0
rightParenthesis: ) @0
staticType: E
static const enumConstant d @25
reference: <testLibraryFragment>::@enum::E::@def::1::@field::d
enclosingElement3: <testLibraryFragment>::@enum::E::@def::1
type: E
shouldUseTypeForInitializerInference: false
constantInitializer
InstanceCreationExpression
constructorName: ConstructorName
type: NamedType
name: E @-1
element: <testLibraryFragment>::@enum::E::@def::0
element2: <testLibrary>::@enum::E::@def::0
type: E
staticElement: <testLibraryFragment>::@enum::E::@def::0::@constructor::new
element: <testLibraryFragment>::@enum::E::@def::0::@constructor::new#element
argumentList: ArgumentList
leftParenthesis: ( @0
rightParenthesis: ) @0
staticType: E
static const enumConstant e @28
reference: <testLibraryFragment>::@enum::E::@def::1::@field::e
enclosingElement3: <testLibraryFragment>::@enum::E::@def::1
type: E
shouldUseTypeForInitializerInference: false
constantInitializer
InstanceCreationExpression
constructorName: ConstructorName
type: NamedType
name: E @-1
element: <testLibraryFragment>::@enum::E::@def::0
element2: <testLibrary>::@enum::E::@def::0
type: E
staticElement: <testLibraryFragment>::@enum::E::@def::0::@constructor::new
element: <testLibraryFragment>::@enum::E::@def::0::@constructor::new#element
argumentList: ArgumentList
leftParenthesis: ( @0
rightParenthesis: ) @0
staticType: E
synthetic static const values @-1
reference: <testLibraryFragment>::@enum::E::@def::1::@field::values
enclosingElement3: <testLibraryFragment>::@enum::E::@def::1
type: List<E>
constantInitializer
ListLiteral
leftBracket: [ @0
elements
SimpleIdentifier
token: c @-1
staticElement: <testLibraryFragment>::@enum::E::@def::1::@getter::c
element: <testLibraryFragment>::@enum::E::@def::1::@getter::c#element
staticType: E
SimpleIdentifier
token: d @-1
staticElement: <testLibraryFragment>::@enum::E::@def::1::@getter::d
element: <testLibraryFragment>::@enum::E::@def::1::@getter::d#element
staticType: E
SimpleIdentifier
token: e @-1
staticElement: <testLibraryFragment>::@enum::E::@def::1::@getter::e
element: <testLibraryFragment>::@enum::E::@def::1::@getter::e#element
staticType: E
rightBracket: ] @0
staticType: List<E>
constructors
synthetic const @-1
reference: <testLibraryFragment>::@enum::E::@def::1::@constructor::new
enclosingElement3: <testLibraryFragment>::@enum::E::@def::1
accessors
synthetic static get c @-1
reference: <testLibraryFragment>::@enum::E::@def::1::@getter::c
enclosingElement3: <testLibraryFragment>::@enum::E::@def::1
returnType: E
synthetic static get d @-1
reference: <testLibraryFragment>::@enum::E::@def::1::@getter::d
enclosingElement3: <testLibraryFragment>::@enum::E::@def::1
returnType: E
synthetic static get e @-1
reference: <testLibraryFragment>::@enum::E::@def::1::@getter::e
enclosingElement3: <testLibraryFragment>::@enum::E::@def::1
returnType: E
synthetic static get values @-1
reference: <testLibraryFragment>::@enum::E::@def::1::@getter::values
enclosingElement3: <testLibraryFragment>::@enum::E::@def::1
returnType: List<E>
----------------------------------------
library
reference: <testLibrary>
fragments
<testLibraryFragment>
element: <testLibrary>
enums
enum E @5
reference: <testLibraryFragment>::@enum::E::@def::0
element: <testLibrary>::@enum::E::@def::0
fields
hasInitializer a @8
reference: <testLibraryFragment>::@enum::E::@def::0::@field::a
element: <testLibraryFragment>::@enum::E::@def::0::@field::a#element
getter2: <testLibraryFragment>::@enum::E::@def::0::@getter::a
hasInitializer b @11
reference: <testLibraryFragment>::@enum::E::@def::0::@field::b
element: <testLibraryFragment>::@enum::E::@def::0::@field::b#element
getter2: <testLibraryFragment>::@enum::E::@def::0::@getter::b
synthetic values
reference: <testLibraryFragment>::@enum::E::@def::0::@field::values
element: <testLibraryFragment>::@enum::E::@def::0::@field::values#element
getter2: <testLibraryFragment>::@enum::E::@def::0::@getter::values
constructors
synthetic const new
reference: <testLibraryFragment>::@enum::E::@def::0::@constructor::new
element: <testLibraryFragment>::@enum::E::@def::0::@constructor::new#element
typeName: E
getters
synthetic get a
reference: <testLibraryFragment>::@enum::E::@def::0::@getter::a
element: <testLibraryFragment>::@enum::E::@def::0::@getter::a#element
synthetic get b
reference: <testLibraryFragment>::@enum::E::@def::0::@getter::b
element: <testLibraryFragment>::@enum::E::@def::0::@getter::b#element
synthetic get values
reference: <testLibraryFragment>::@enum::E::@def::0::@getter::values
element: <testLibraryFragment>::@enum::E::@def::0::@getter::values#element
enum E @19
reference: <testLibraryFragment>::@enum::E::@def::1
element: <testLibrary>::@enum::E::@def::1
fields
hasInitializer c @22
reference: <testLibraryFragment>::@enum::E::@def::1::@field::c
element: <testLibraryFragment>::@enum::E::@def::1::@field::c#element
getter2: <testLibraryFragment>::@enum::E::@def::1::@getter::c
hasInitializer d @25
reference: <testLibraryFragment>::@enum::E::@def::1::@field::d
element: <testLibraryFragment>::@enum::E::@def::1::@field::d#element
getter2: <testLibraryFragment>::@enum::E::@def::1::@getter::d
hasInitializer e @28
reference: <testLibraryFragment>::@enum::E::@def::1::@field::e
element: <testLibraryFragment>::@enum::E::@def::1::@field::e#element
getter2: <testLibraryFragment>::@enum::E::@def::1::@getter::e
synthetic values
reference: <testLibraryFragment>::@enum::E::@def::1::@field::values
element: <testLibraryFragment>::@enum::E::@def::1::@field::values#element
getter2: <testLibraryFragment>::@enum::E::@def::1::@getter::values
constructors
synthetic const new
reference: <testLibraryFragment>::@enum::E::@def::1::@constructor::new
element: <testLibraryFragment>::@enum::E::@def::1::@constructor::new#element
typeName: E
getters
synthetic get c
reference: <testLibraryFragment>::@enum::E::@def::1::@getter::c
element: <testLibraryFragment>::@enum::E::@def::1::@getter::c#element
synthetic get d
reference: <testLibraryFragment>::@enum::E::@def::1::@getter::d
element: <testLibraryFragment>::@enum::E::@def::1::@getter::d#element
synthetic get e
reference: <testLibraryFragment>::@enum::E::@def::1::@getter::e
element: <testLibraryFragment>::@enum::E::@def::1::@getter::e#element
synthetic get values
reference: <testLibraryFragment>::@enum::E::@def::1::@getter::values
element: <testLibraryFragment>::@enum::E::@def::1::@getter::values#element
enums
enum E
reference: <testLibrary>::@enum::E::@def::0
firstFragment: <testLibraryFragment>::@enum::E::@def::0
supertype: Enum
fields
static const enumConstant hasInitializer a
firstFragment: <testLibraryFragment>::@enum::E::@def::0::@field::a
type: E
getter: <testLibraryFragment>::@enum::E::@def::0::@getter::a#element
static const enumConstant hasInitializer b
firstFragment: <testLibraryFragment>::@enum::E::@def::0::@field::b
type: E
getter: <testLibraryFragment>::@enum::E::@def::0::@getter::b#element
synthetic static const values
firstFragment: <testLibraryFragment>::@enum::E::@def::0::@field::values
type: List<E>
getter: <testLibraryFragment>::@enum::E::@def::0::@getter::values#element
constructors
synthetic const new
firstFragment: <testLibraryFragment>::@enum::E::@def::0::@constructor::new
getters
synthetic static get a
firstFragment: <testLibraryFragment>::@enum::E::@def::0::@getter::a
synthetic static get b
firstFragment: <testLibraryFragment>::@enum::E::@def::0::@getter::b
synthetic static get values
firstFragment: <testLibraryFragment>::@enum::E::@def::0::@getter::values
enum E
reference: <testLibrary>::@enum::E::@def::1
firstFragment: <testLibraryFragment>::@enum::E::@def::1
supertype: Enum
fields
static const enumConstant hasInitializer c
firstFragment: <testLibraryFragment>::@enum::E::@def::1::@field::c
type: E
getter: <testLibraryFragment>::@enum::E::@def::1::@getter::c#element
static const enumConstant hasInitializer d
firstFragment: <testLibraryFragment>::@enum::E::@def::1::@field::d
type: E
getter: <testLibraryFragment>::@enum::E::@def::1::@getter::d#element
static const enumConstant hasInitializer e
firstFragment: <testLibraryFragment>::@enum::E::@def::1::@field::e
type: E
getter: <testLibraryFragment>::@enum::E::@def::1::@getter::e#element
synthetic static const values
firstFragment: <testLibraryFragment>::@enum::E::@def::1::@field::values
type: List<E>
getter: <testLibraryFragment>::@enum::E::@def::1::@getter::values#element
constructors
synthetic const new
firstFragment: <testLibraryFragment>::@enum::E::@def::1::@constructor::new
getters
synthetic static get c
firstFragment: <testLibraryFragment>::@enum::E::@def::1::@getter::c
synthetic static get d
firstFragment: <testLibraryFragment>::@enum::E::@def::1::@getter::d
synthetic static get e
firstFragment: <testLibraryFragment>::@enum::E::@def::1::@getter::e
synthetic static get values
firstFragment: <testLibraryFragment>::@enum::E::@def::1::@getter::values
''');
}
test_duplicateDeclaration_extension() async {
var library = await buildLibrary(r'''
extension E on int {}
extension E on int {
static var x;
}
extension E on int {
static var y = 0;
}
''');
checkElementText(library, r'''
library
reference: <testLibrary>
definingUnit: <testLibraryFragment>
units
<testLibraryFragment>
enclosingElement3: <null>
extensions
E @10
reference: <testLibraryFragment>::@extension::E::@def::0
enclosingElement3: <testLibraryFragment>
extendedType: int
E @32
reference: <testLibraryFragment>::@extension::E::@def::1
enclosingElement3: <testLibraryFragment>
extendedType: int
fields
static x @56
reference: <testLibraryFragment>::@extension::E::@def::1::@field::x
enclosingElement3: <testLibraryFragment>::@extension::E::@def::1
type: dynamic
accessors
synthetic static get x @-1
reference: <testLibraryFragment>::@extension::E::@def::1::@getter::x
enclosingElement3: <testLibraryFragment>::@extension::E::@def::1
returnType: dynamic
synthetic static set x= @-1
reference: <testLibraryFragment>::@extension::E::@def::1::@setter::x
enclosingElement3: <testLibraryFragment>::@extension::E::@def::1
parameters
requiredPositional _x @-1
type: dynamic
returnType: void
E @71
reference: <testLibraryFragment>::@extension::E::@def::2
enclosingElement3: <testLibraryFragment>
extendedType: int
fields
static y @95
reference: <testLibraryFragment>::@extension::E::@def::2::@field::y
enclosingElement3: <testLibraryFragment>::@extension::E::@def::2
type: int
shouldUseTypeForInitializerInference: false
accessors
synthetic static get y @-1
reference: <testLibraryFragment>::@extension::E::@def::2::@getter::y
enclosingElement3: <testLibraryFragment>::@extension::E::@def::2
returnType: int
synthetic static set y= @-1
reference: <testLibraryFragment>::@extension::E::@def::2::@setter::y
enclosingElement3: <testLibraryFragment>::@extension::E::@def::2
parameters
requiredPositional _y @-1
type: int
returnType: void
----------------------------------------
library
reference: <testLibrary>
fragments
<testLibraryFragment>
element: <testLibrary>
extensions
extension E @10
reference: <testLibraryFragment>::@extension::E::@def::0
element: <testLibrary>::@extension::E::@def::0
extension E @32
reference: <testLibraryFragment>::@extension::E::@def::1
element: <testLibrary>::@extension::E::@def::1
fields
x @56
reference: <testLibraryFragment>::@extension::E::@def::1::@field::x
element: <testLibraryFragment>::@extension::E::@def::1::@field::x#element
getter2: <testLibraryFragment>::@extension::E::@def::1::@getter::x
setter2: <testLibraryFragment>::@extension::E::@def::1::@setter::x
getters
synthetic get x
reference: <testLibraryFragment>::@extension::E::@def::1::@getter::x
element: <testLibraryFragment>::@extension::E::@def::1::@getter::x#element
setters
synthetic set x
reference: <testLibraryFragment>::@extension::E::@def::1::@setter::x
element: <testLibraryFragment>::@extension::E::@def::1::@setter::x#element
formalParameters
<null-name>
element: <testLibraryFragment>::@extension::E::@def::1::@setter::x::@parameter::_x#element
extension E @71
reference: <testLibraryFragment>::@extension::E::@def::2
element: <testLibrary>::@extension::E::@def::2
fields
hasInitializer y @95
reference: <testLibraryFragment>::@extension::E::@def::2::@field::y
element: <testLibraryFragment>::@extension::E::@def::2::@field::y#element
getter2: <testLibraryFragment>::@extension::E::@def::2::@getter::y
setter2: <testLibraryFragment>::@extension::E::@def::2::@setter::y
getters
synthetic get y
reference: <testLibraryFragment>::@extension::E::@def::2::@getter::y
element: <testLibraryFragment>::@extension::E::@def::2::@getter::y#element
setters
synthetic set y
reference: <testLibraryFragment>::@extension::E::@def::2::@setter::y
element: <testLibraryFragment>::@extension::E::@def::2::@setter::y#element
formalParameters
<null-name>
element: <testLibraryFragment>::@extension::E::@def::2::@setter::y::@parameter::_y#element
extensions
extension E
reference: <testLibrary>::@extension::E::@def::0
firstFragment: <testLibraryFragment>::@extension::E::@def::0
extension E
reference: <testLibrary>::@extension::E::@def::1
firstFragment: <testLibraryFragment>::@extension::E::@def::1
fields
static x
firstFragment: <testLibraryFragment>::@extension::E::@def::1::@field::x
type: dynamic
getter: <testLibraryFragment>::@extension::E::@def::1::@getter::x#element
setter: <testLibraryFragment>::@extension::E::@def::1::@setter::x#element
getters
synthetic static get x
firstFragment: <testLibraryFragment>::@extension::E::@def::1::@getter::x
setters
synthetic static set x
firstFragment: <testLibraryFragment>::@extension::E::@def::1::@setter::x
formalParameters
requiredPositional _x
type: dynamic
extension E
reference: <testLibrary>::@extension::E::@def::2
firstFragment: <testLibraryFragment>::@extension::E::@def::2
fields
static hasInitializer y
firstFragment: <testLibraryFragment>::@extension::E::@def::2::@field::y
type: int
getter: <testLibraryFragment>::@extension::E::@def::2::@getter::y#element
setter: <testLibraryFragment>::@extension::E::@def::2::@setter::y#element
getters
synthetic static get y
firstFragment: <testLibraryFragment>::@extension::E::@def::2::@getter::y
setters
synthetic static set y
firstFragment: <testLibraryFragment>::@extension::E::@def::2::@setter::y
formalParameters
requiredPositional _y
type: int
''');
}
test_duplicateDeclaration_extensionType() async {
var library = await buildLibrary(r'''
extension type E(int it) {}
extension type E(double it) {}
''');
checkElementText(library, r'''
library
reference: <testLibrary>
definingUnit: <testLibraryFragment>
units
<testLibraryFragment>
enclosingElement3: <null>
extensionTypes
E @15
reference: <testLibraryFragment>::@extensionType::E::@def::0
enclosingElement3: <testLibraryFragment>
representation: <testLibraryFragment>::@extensionType::E::@def::0::@field::it
primaryConstructor: <testLibraryFragment>::@extensionType::E::@def::0::@constructor::new
typeErasure: int
fields
final it @21
reference: <testLibraryFragment>::@extensionType::E::@def::0::@field::it
enclosingElement3: <testLibraryFragment>::@extensionType::E::@def::0
type: int
constructors
@15
reference: <testLibraryFragment>::@extensionType::E::@def::0::@constructor::new
enclosingElement3: <testLibraryFragment>::@extensionType::E::@def::0
parameters
requiredPositional final hasImplicitType this.it @21
type: int
field: <testLibraryFragment>::@extensionType::E::@def::0::@field::it
accessors
synthetic get it @-1
reference: <testLibraryFragment>::@extensionType::E::@def::0::@getter::it
enclosingElement3: <testLibraryFragment>::@extensionType::E::@def::0
returnType: int
E @43
reference: <testLibraryFragment>::@extensionType::E::@def::1
enclosingElement3: <testLibraryFragment>
representation: <testLibraryFragment>::@extensionType::E::@def::1::@field::it
primaryConstructor: <testLibraryFragment>::@extensionType::E::@def::1::@constructor::new
typeErasure: double
fields
final it @52
reference: <testLibraryFragment>::@extensionType::E::@def::1::@field::it
enclosingElement3: <testLibraryFragment>::@extensionType::E::@def::1
type: double
constructors
@43
reference: <testLibraryFragment>::@extensionType::E::@def::1::@constructor::new
enclosingElement3: <testLibraryFragment>::@extensionType::E::@def::1
parameters
requiredPositional final hasImplicitType this.it @52
type: double
field: <testLibraryFragment>::@extensionType::E::@def::1::@field::it
accessors
synthetic get it @-1
reference: <testLibraryFragment>::@extensionType::E::@def::1::@getter::it
enclosingElement3: <testLibraryFragment>::@extensionType::E::@def::1
returnType: double
----------------------------------------
library
reference: <testLibrary>
fragments
<testLibraryFragment>
element: <testLibrary>
extensionTypes
extension type E @15
reference: <testLibraryFragment>::@extensionType::E::@def::0
element: <testLibrary>::@extensionType::E::@def::0
fields
it @21
reference: <testLibraryFragment>::@extensionType::E::@def::0::@field::it
element: <testLibraryFragment>::@extensionType::E::@def::0::@field::it#element
getter2: <testLibraryFragment>::@extensionType::E::@def::0::@getter::it
constructors
new
reference: <testLibraryFragment>::@extensionType::E::@def::0::@constructor::new
element: <testLibraryFragment>::@extensionType::E::@def::0::@constructor::new#element
typeName: E
typeNameOffset: 15
formalParameters
this.it @21
element: <testLibraryFragment>::@extensionType::E::@def::0::@constructor::new::@parameter::it#element
getters
synthetic get it
reference: <testLibraryFragment>::@extensionType::E::@def::0::@getter::it
element: <testLibraryFragment>::@extensionType::E::@def::0::@getter::it#element
extension type E @43
reference: <testLibraryFragment>::@extensionType::E::@def::1
element: <testLibrary>::@extensionType::E::@def::1
fields
it @52
reference: <testLibraryFragment>::@extensionType::E::@def::1::@field::it
element: <testLibraryFragment>::@extensionType::E::@def::1::@field::it#element
getter2: <testLibraryFragment>::@extensionType::E::@def::1::@getter::it
constructors
new
reference: <testLibraryFragment>::@extensionType::E::@def::1::@constructor::new
element: <testLibraryFragment>::@extensionType::E::@def::1::@constructor::new#element
typeName: E
typeNameOffset: 43
formalParameters
this.it @52
element: <testLibraryFragment>::@extensionType::E::@def::1::@constructor::new::@parameter::it#element
getters
synthetic get it
reference: <testLibraryFragment>::@extensionType::E::@def::1::@getter::it
element: <testLibraryFragment>::@extensionType::E::@def::1::@getter::it#element
extensionTypes
extension type E
reference: <testLibrary>::@extensionType::E::@def::0
firstFragment: <testLibraryFragment>::@extensionType::E::@def::0
representation: <testLibraryFragment>::@extensionType::E::@def::0::@field::it#element
primaryConstructor: <testLibraryFragment>::@extensionType::E::@def::0::@constructor::new#element
typeErasure: int
fields
final it
firstFragment: <testLibraryFragment>::@extensionType::E::@def::0::@field::it
type: int
getter: <testLibraryFragment>::@extensionType::E::@def::0::@getter::it#element
constructors
new
firstFragment: <testLibraryFragment>::@extensionType::E::@def::0::@constructor::new
formalParameters
requiredPositional final hasImplicitType it
type: int
getters
synthetic get it
firstFragment: <testLibraryFragment>::@extensionType::E::@def::0::@getter::it
extension type E
reference: <testLibrary>::@extensionType::E::@def::1
firstFragment: <testLibraryFragment>::@extensionType::E::@def::1
representation: <testLibraryFragment>::@extensionType::E::@def::1::@field::it#element
primaryConstructor: <testLibraryFragment>::@extensionType::E::@def::1::@constructor::new#element
typeErasure: double
fields
final it
firstFragment: <testLibraryFragment>::@extensionType::E::@def::1::@field::it
type: double
getter: <testLibraryFragment>::@extensionType::E::@def::1::@getter::it#element
constructors
new
firstFragment: <testLibraryFragment>::@extensionType::E::@def::1::@constructor::new
formalParameters
requiredPositional final hasImplicitType it
type: double
getters
synthetic get it
firstFragment: <testLibraryFragment>::@extensionType::E::@def::1::@getter::it
''');
}
test_duplicateDeclaration_function() async {
var library = await buildLibrary(r'''
void f() {}
void f(int a) {}
void f([int b, double c]) {}
''');
checkElementText(library, r'''
library
reference: <testLibrary>
definingUnit: <testLibraryFragment>
units
<testLibraryFragment>
enclosingElement3: <null>
functions
f @5
reference: <testLibraryFragment>::@function::f::@def::0
enclosingElement3: <testLibraryFragment>
returnType: void
f @17
reference: <testLibraryFragment>::@function::f::@def::1
enclosingElement3: <testLibraryFragment>
parameters
requiredPositional a @23
type: int
returnType: void
f @34
reference: <testLibraryFragment>::@function::f::@def::2
enclosingElement3: <testLibraryFragment>
parameters
optionalPositional default b @41
type: int
optionalPositional default c @51
type: double
returnType: void
----------------------------------------
library
reference: <testLibrary>
fragments
<testLibraryFragment>
element: <testLibrary>
functions
f @5
reference: <testLibraryFragment>::@function::f::@def::0
element: <testLibrary>::@function::f::@def::0
f @17
reference: <testLibraryFragment>::@function::f::@def::1
element: <testLibrary>::@function::f::@def::1
formalParameters
a @23
element: <testLibraryFragment>::@function::f::@def::1::@parameter::a#element
f @34
reference: <testLibraryFragment>::@function::f::@def::2
element: <testLibrary>::@function::f::@def::2
formalParameters
default b @41
element: <testLibraryFragment>::@function::f::@def::2::@parameter::b#element
default c @51
element: <testLibraryFragment>::@function::f::@def::2::@parameter::c#element
functions
f
reference: <testLibrary>::@function::f::@def::0
firstFragment: <testLibraryFragment>::@function::f::@def::0
returnType: void
f
reference: <testLibrary>::@function::f::@def::1
firstFragment: <testLibraryFragment>::@function::f::@def::1
formalParameters
requiredPositional a
type: int
returnType: void
f
reference: <testLibrary>::@function::f::@def::2
firstFragment: <testLibraryFragment>::@function::f::@def::2
formalParameters
optionalPositional b
type: int
optionalPositional c
type: double
returnType: void
''');
}
test_duplicateDeclaration_function_namedParameter() async {
var library = await buildLibrary(r'''
void f({int a, double a}) {}
''');
checkElementText(library, r'''
library
reference: <testLibrary>
definingUnit: <testLibraryFragment>
units
<testLibraryFragment>
enclosingElement3: <null>
functions
f @5
reference: <testLibraryFragment>::@function::f
enclosingElement3: <testLibraryFragment>
parameters
optionalNamed default a @12
reference: <testLibraryFragment>::@function::f::@parameter::a::@def::0
type: int
optionalNamed default a @22
reference: <testLibraryFragment>::@function::f::@parameter::a::@def::1
type: double
returnType: void
----------------------------------------
library
reference: <testLibrary>
fragments
<testLibraryFragment>
element: <testLibrary>
functions
f @5
reference: <testLibraryFragment>::@function::f
element: <testLibrary>::@function::f
formalParameters
default a @12
reference: <testLibraryFragment>::@function::f::@parameter::a::@def::0
element: <testLibraryFragment>::@function::f::@parameter::a::@def::0#element
default a @22
reference: <testLibraryFragment>::@function::f::@parameter::a::@def::1
element: <testLibraryFragment>::@function::f::@parameter::a::@def::1#element
functions
f
reference: <testLibrary>::@function::f
firstFragment: <testLibraryFragment>::@function::f
formalParameters
optionalNamed a
firstFragment: <testLibraryFragment>::@function::f::@parameter::a::@def::0
type: int
optionalNamed a
firstFragment: <testLibraryFragment>::@function::f::@parameter::a::@def::1
type: double
returnType: void
''');
}
test_duplicateDeclaration_functionTypeAlias() async {
var library = await buildLibrary(r'''
typedef void F();
typedef void F(int a);
typedef void F([int b, double c]);
''');
checkElementText(library, r'''
library
reference: <testLibrary>
definingUnit: <testLibraryFragment>
units
<testLibraryFragment>
enclosingElement3: <null>
typeAliases
functionTypeAliasBased F @13
reference: <testLibraryFragment>::@typeAlias::F::@def::0
aliasedType: void Function()
aliasedElement: GenericFunctionTypeElement
returnType: void
functionTypeAliasBased F @31
reference: <testLibraryFragment>::@typeAlias::F::@def::1
aliasedType: void Function(int)
aliasedElement: GenericFunctionTypeElement
parameters
requiredPositional a @37
type: int
returnType: void
functionTypeAliasBased F @54
reference: <testLibraryFragment>::@typeAlias::F::@def::2
aliasedType: void Function([int, double])
aliasedElement: GenericFunctionTypeElement
parameters
optionalPositional b @61
type: int
optionalPositional c @71
type: double
returnType: void
----------------------------------------
library
reference: <testLibrary>
fragments
<testLibraryFragment>
element: <testLibrary>
typeAliases
F @13
reference: <testLibraryFragment>::@typeAlias::F::@def::0
element: <testLibrary>::@typeAlias::F::@def::0
F @31
reference: <testLibraryFragment>::@typeAlias::F::@def::1
element: <testLibrary>::@typeAlias::F::@def::1
F @54
reference: <testLibraryFragment>::@typeAlias::F::@def::2
element: <testLibrary>::@typeAlias::F::@def::2
typeAliases
F
firstFragment: <testLibraryFragment>::@typeAlias::F::@def::0
aliasedType: void Function()
F
firstFragment: <testLibraryFragment>::@typeAlias::F::@def::1
aliasedType: void Function(int)
F
firstFragment: <testLibraryFragment>::@typeAlias::F::@def::2
aliasedType: void Function([int, double])
''');
}
test_duplicateDeclaration_mixin() async {
var library = await buildLibrary(r'''
mixin A {}
mixin A {
var x;
}
mixin A {
var y = 0;
}
''');
checkElementText(library, r'''
library
reference: <testLibrary>
definingUnit: <testLibraryFragment>
units
<testLibraryFragment>
enclosingElement3: <null>
mixins
mixin A @6
reference: <testLibraryFragment>::@mixin::A::@def::0
enclosingElement3: <testLibraryFragment>
superclassConstraints
Object
mixin A @17
reference: <testLibraryFragment>::@mixin::A::@def::1
enclosingElement3: <testLibraryFragment>
superclassConstraints
Object
fields
x @27
reference: <testLibraryFragment>::@mixin::A::@def::1::@field::x
enclosingElement3: <testLibraryFragment>::@mixin::A::@def::1
type: dynamic
accessors
synthetic get x @-1
reference: <testLibraryFragment>::@mixin::A::@def::1::@getter::x
enclosingElement3: <testLibraryFragment>::@mixin::A::@def::1
returnType: dynamic
synthetic set x= @-1
reference: <testLibraryFragment>::@mixin::A::@def::1::@setter::x
enclosingElement3: <testLibraryFragment>::@mixin::A::@def::1
parameters
requiredPositional _x @-1
type: dynamic
returnType: void
mixin A @38
reference: <testLibraryFragment>::@mixin::A::@def::2
enclosingElement3: <testLibraryFragment>
superclassConstraints
Object
fields
y @48
reference: <testLibraryFragment>::@mixin::A::@def::2::@field::y
enclosingElement3: <testLibraryFragment>::@mixin::A::@def::2
type: int
shouldUseTypeForInitializerInference: false
accessors
synthetic get y @-1
reference: <testLibraryFragment>::@mixin::A::@def::2::@getter::y
enclosingElement3: <testLibraryFragment>::@mixin::A::@def::2
returnType: int
synthetic set y= @-1
reference: <testLibraryFragment>::@mixin::A::@def::2::@setter::y
enclosingElement3: <testLibraryFragment>::@mixin::A::@def::2
parameters
requiredPositional _y @-1
type: int
returnType: void
----------------------------------------
library
reference: <testLibrary>
fragments
<testLibraryFragment>
element: <testLibrary>
mixins
mixin A @6
reference: <testLibraryFragment>::@mixin::A::@def::0
element: <testLibrary>::@mixin::A::@def::0
mixin A @17
reference: <testLibraryFragment>::@mixin::A::@def::1
element: <testLibrary>::@mixin::A::@def::1
fields
x @27
reference: <testLibraryFragment>::@mixin::A::@def::1::@field::x
element: <testLibraryFragment>::@mixin::A::@def::1::@field::x#element
getter2: <testLibraryFragment>::@mixin::A::@def::1::@getter::x
setter2: <testLibraryFragment>::@mixin::A::@def::1::@setter::x
getters
synthetic get x
reference: <testLibraryFragment>::@mixin::A::@def::1::@getter::x
element: <testLibraryFragment>::@mixin::A::@def::1::@getter::x#element
setters
synthetic set x
reference: <testLibraryFragment>::@mixin::A::@def::1::@setter::x
element: <testLibraryFragment>::@mixin::A::@def::1::@setter::x#element
formalParameters
<null-name>
element: <testLibraryFragment>::@mixin::A::@def::1::@setter::x::@parameter::_x#element
mixin A @38
reference: <testLibraryFragment>::@mixin::A::@def::2
element: <testLibrary>::@mixin::A::@def::2
fields
hasInitializer y @48
reference: <testLibraryFragment>::@mixin::A::@def::2::@field::y
element: <testLibraryFragment>::@mixin::A::@def::2::@field::y#element
getter2: <testLibraryFragment>::@mixin::A::@def::2::@getter::y
setter2: <testLibraryFragment>::@mixin::A::@def::2::@setter::y
getters
synthetic get y
reference: <testLibraryFragment>::@mixin::A::@def::2::@getter::y
element: <testLibraryFragment>::@mixin::A::@def::2::@getter::y#element
setters
synthetic set y
reference: <testLibraryFragment>::@mixin::A::@def::2::@setter::y
element: <testLibraryFragment>::@mixin::A::@def::2::@setter::y#element
formalParameters
<null-name>
element: <testLibraryFragment>::@mixin::A::@def::2::@setter::y::@parameter::_y#element
mixins
mixin A
reference: <testLibrary>::@mixin::A::@def::0
firstFragment: <testLibraryFragment>::@mixin::A::@def::0
superclassConstraints
Object
mixin A
reference: <testLibrary>::@mixin::A::@def::1
firstFragment: <testLibraryFragment>::@mixin::A::@def::1
superclassConstraints
Object
fields
x
firstFragment: <testLibraryFragment>::@mixin::A::@def::1::@field::x
type: dynamic
getter: <testLibraryFragment>::@mixin::A::@def::1::@getter::x#element
setter: <testLibraryFragment>::@mixin::A::@def::1::@setter::x#element
getters
synthetic get x
firstFragment: <testLibraryFragment>::@mixin::A::@def::1::@getter::x
setters
synthetic set x
firstFragment: <testLibraryFragment>::@mixin::A::@def::1::@setter::x
formalParameters
requiredPositional _x
type: dynamic
mixin A
reference: <testLibrary>::@mixin::A::@def::2
firstFragment: <testLibraryFragment>::@mixin::A::@def::2
superclassConstraints
Object
fields
hasInitializer y
firstFragment: <testLibraryFragment>::@mixin::A::@def::2::@field::y
type: int
getter: <testLibraryFragment>::@mixin::A::@def::2::@getter::y#element
setter: <testLibraryFragment>::@mixin::A::@def::2::@setter::y#element
getters
synthetic get y
firstFragment: <testLibraryFragment>::@mixin::A::@def::2::@getter::y
setters
synthetic set y
firstFragment: <testLibraryFragment>::@mixin::A::@def::2::@setter::y
formalParameters
requiredPositional _y
type: int
''');
}
test_duplicateDeclaration_topLevelVariable() async {
var library = await buildLibrary(r'''
bool x;
var x;
final x = 1;
var x = 2.3;
''');
configuration.withPropertyLinking = true;
checkElementText(library, r'''
library
reference: <testLibrary>
definingUnit: <testLibraryFragment>
units
<testLibraryFragment>
enclosingElement3: <null>
topLevelVariables
static x @5
reference: <testLibraryFragment>::@topLevelVariable::x::@def::0
enclosingElement3: <testLibraryFragment>
type: bool
id: variable_0
getter: getter_0
setter: setter_0
static x @12
reference: <testLibraryFragment>::@topLevelVariable::x::@def::1
enclosingElement3: <testLibraryFragment>
type: dynamic
id: variable_1
getter: getter_1
setter: setter_1
static final x @21
reference: <testLibraryFragment>::@topLevelVariable::x::@def::2
enclosingElement3: <testLibraryFragment>
type: int
shouldUseTypeForInitializerInference: false
id: variable_2
getter: getter_2
static x @32
reference: <testLibraryFragment>::@topLevelVariable::x::@def::3
enclosingElement3: <testLibraryFragment>
type: double
shouldUseTypeForInitializerInference: false
id: variable_3
getter: getter_3
setter: setter_2
accessors
synthetic static get x @-1
reference: <testLibraryFragment>::@getter::x::@def::0
enclosingElement3: <testLibraryFragment>
returnType: bool
id: getter_0
variable: variable_0
synthetic static set x= @-1
reference: <testLibraryFragment>::@setter::x::@def::0
enclosingElement3: <testLibraryFragment>
parameters
requiredPositional _x @-1
type: bool
returnType: void
id: setter_0
variable: variable_0
synthetic static get x @-1
reference: <testLibraryFragment>::@getter::x::@def::1
enclosingElement3: <testLibraryFragment>
returnType: dynamic
id: getter_1
variable: variable_1
synthetic static set x= @-1
reference: <testLibraryFragment>::@setter::x::@def::1
enclosingElement3: <testLibraryFragment>
parameters
requiredPositional _x @-1
type: dynamic
returnType: void
id: setter_1
variable: variable_1
synthetic static get x @-1
reference: <testLibraryFragment>::@getter::x::@def::2
enclosingElement3: <testLibraryFragment>
returnType: int
id: getter_2
variable: variable_2
synthetic static get x @-1
reference: <testLibraryFragment>::@getter::x::@def::3
enclosingElement3: <testLibraryFragment>
returnType: double
id: getter_3
variable: variable_3
synthetic static set x= @-1
reference: <testLibraryFragment>::@setter::x::@def::2
enclosingElement3: <testLibraryFragment>
parameters
requiredPositional _x @-1
type: double
returnType: void
id: setter_2
variable: variable_3
----------------------------------------
library
reference: <testLibrary>
fragments
<testLibraryFragment>
element: <testLibrary>
topLevelVariables
x @5
reference: <testLibraryFragment>::@topLevelVariable::x::@def::0
element: <testLibrary>::@topLevelVariable::x::@def::0
getter2: <testLibraryFragment>::@getter::x::@def::0
setter2: <testLibraryFragment>::@setter::x::@def::0
x @12
reference: <testLibraryFragment>::@topLevelVariable::x::@def::1
element: <testLibrary>::@topLevelVariable::x::@def::1
getter2: <testLibraryFragment>::@getter::x::@def::1
setter2: <testLibraryFragment>::@setter::x::@def::1
hasInitializer x @21
reference: <testLibraryFragment>::@topLevelVariable::x::@def::2
element: <testLibrary>::@topLevelVariable::x::@def::2
getter2: <testLibraryFragment>::@getter::x::@def::2
hasInitializer x @32
reference: <testLibraryFragment>::@topLevelVariable::x::@def::3
element: <testLibrary>::@topLevelVariable::x::@def::3
getter2: <testLibraryFragment>::@getter::x::@def::3
setter2: <testLibraryFragment>::@setter::x::@def::2
getters
synthetic get x
reference: <testLibraryFragment>::@getter::x::@def::0
element: <testLibraryFragment>::@getter::x::@def::0#element
synthetic get x
reference: <testLibraryFragment>::@getter::x::@def::1
element: <testLibraryFragment>::@getter::x::@def::1#element
synthetic get x
reference: <testLibraryFragment>::@getter::x::@def::2
element: <testLibraryFragment>::@getter::x::@def::2#element
synthetic get x
reference: <testLibraryFragment>::@getter::x::@def::3
element: <testLibraryFragment>::@getter::x::@def::3#element
setters
synthetic set x
reference: <testLibraryFragment>::@setter::x::@def::0
element: <testLibraryFragment>::@setter::x::@def::0#element
formalParameters
<null-name>
element: <testLibraryFragment>::@setter::x::@def::0::@parameter::_x#element
synthetic set x
reference: <testLibraryFragment>::@setter::x::@def::1
element: <testLibraryFragment>::@setter::x::@def::1#element
formalParameters
<null-name>
element: <testLibraryFragment>::@setter::x::@def::1::@parameter::_x#element
synthetic set x
reference: <testLibraryFragment>::@setter::x::@def::2
element: <testLibraryFragment>::@setter::x::@def::2#element
formalParameters
<null-name>
element: <testLibraryFragment>::@setter::x::@def::2::@parameter::_x#element
topLevelVariables
x
reference: <testLibrary>::@topLevelVariable::x::@def::0
firstFragment: <testLibraryFragment>::@topLevelVariable::x::@def::0
type: bool
getter: <testLibraryFragment>::@getter::x::@def::0#element
setter: <testLibraryFragment>::@setter::x::@def::0#element
x
reference: <testLibrary>::@topLevelVariable::x::@def::1
firstFragment: <testLibraryFragment>::@topLevelVariable::x::@def::1
type: dynamic
getter: <testLibraryFragment>::@getter::x::@def::1#element
setter: <testLibraryFragment>::@setter::x::@def::1#element
final hasInitializer x
reference: <testLibrary>::@topLevelVariable::x::@def::2
firstFragment: <testLibraryFragment>::@topLevelVariable::x::@def::2
type: int
getter: <testLibraryFragment>::@getter::x::@def::2#element
hasInitializer x
reference: <testLibrary>::@topLevelVariable::x::@def::3
firstFragment: <testLibraryFragment>::@topLevelVariable::x::@def::3
type: double
getter: <testLibraryFragment>::@getter::x::@def::3#element
setter: <testLibraryFragment>::@setter::x::@def::2#element
getters
synthetic static get x
firstFragment: <testLibraryFragment>::@getter::x::@def::0
synthetic static get x
firstFragment: <testLibraryFragment>::@getter::x::@def::1
synthetic static get x
firstFragment: <testLibraryFragment>::@getter::x::@def::2
synthetic static get x
firstFragment: <testLibraryFragment>::@getter::x::@def::3
setters
synthetic static set x
firstFragment: <testLibraryFragment>::@setter::x::@def::0
formalParameters
requiredPositional _x
type: bool
synthetic static set x
firstFragment: <testLibraryFragment>::@setter::x::@def::1
formalParameters
requiredPositional _x
type: dynamic
synthetic static set x
firstFragment: <testLibraryFragment>::@setter::x::@def::2
formalParameters
requiredPositional _x
type: double
''');
}
test_duplicateDeclaration_unit_getter() async {
var library = await buildLibrary(r'''
int get foo {}
double get foo {}
''');
configuration.withPropertyLinking = true;
checkElementText(library, r'''
library
reference: <testLibrary>
definingUnit: <testLibraryFragment>
units
<testLibraryFragment>
enclosingElement3: <null>
topLevelVariables
synthetic static foo @-1
reference: <testLibraryFragment>::@topLevelVariable::foo
enclosingElement3: <testLibraryFragment>
type: double
id: variable_0
getter: getter_0
accessors
static get foo @8
reference: <testLibraryFragment>::@getter::foo::@def::0
enclosingElement3: <testLibraryFragment>
returnType: int
id: getter_1
variable: variable_0
static get foo @26
reference: <testLibraryFragment>::@getter::foo::@def::1
enclosingElement3: <testLibraryFragment>
returnType: double
id: getter_0
variable: variable_0
----------------------------------------
library
reference: <testLibrary>
fragments
<testLibraryFragment>
element: <testLibrary>
topLevelVariables
synthetic foo
reference: <testLibraryFragment>::@topLevelVariable::foo
element: <testLibrary>::@topLevelVariable::foo
getter2: <testLibraryFragment>::@getter::foo::@def::1
getters
get foo @8
reference: <testLibraryFragment>::@getter::foo::@def::0
element: <testLibraryFragment>::@getter::foo::@def::0#element
get foo @26
reference: <testLibraryFragment>::@getter::foo::@def::1
element: <testLibraryFragment>::@getter::foo::@def::1#element
topLevelVariables
synthetic foo
reference: <testLibrary>::@topLevelVariable::foo
firstFragment: <testLibraryFragment>::@topLevelVariable::foo
type: double
getter: <testLibraryFragment>::@getter::foo::@def::1#element
getters
static get foo
firstFragment: <testLibraryFragment>::@getter::foo::@def::0
static get foo
firstFragment: <testLibraryFragment>::@getter::foo::@def::1
''');
}
test_duplicateDeclaration_unit_setter() async {
var library = await buildLibrary(r'''
set foo(int _) {}
set foo(double _) {}
''');
configuration.withPropertyLinking = true;
checkElementText(library, r'''
library
reference: <testLibrary>
definingUnit: <testLibraryFragment>
units
<testLibraryFragment>
enclosingElement3: <null>
topLevelVariables
synthetic static foo @-1
reference: <testLibraryFragment>::@topLevelVariable::foo
enclosingElement3: <testLibraryFragment>
type: double
id: variable_0
setter: setter_0
accessors
static set foo= @4
reference: <testLibraryFragment>::@setter::foo::@def::0
enclosingElement3: <testLibraryFragment>
parameters
requiredPositional _ @12
type: int
returnType: void
id: setter_1
variable: variable_0
static set foo= @22
reference: <testLibraryFragment>::@setter::foo::@def::1
enclosingElement3: <testLibraryFragment>
parameters
requiredPositional _ @33
type: double
returnType: void
id: setter_0
variable: variable_0
----------------------------------------
library
reference: <testLibrary>
fragments
<testLibraryFragment>
element: <testLibrary>
topLevelVariables
synthetic foo
reference: <testLibraryFragment>::@topLevelVariable::foo
element: <testLibrary>::@topLevelVariable::foo
setter2: <testLibraryFragment>::@setter::foo::@def::1
setters
set foo @4
reference: <testLibraryFragment>::@setter::foo::@def::0
element: <testLibraryFragment>::@setter::foo::@def::0#element
formalParameters
_ @12
element: <testLibraryFragment>::@setter::foo::@def::0::@parameter::_#element
set foo @22
reference: <testLibraryFragment>::@setter::foo::@def::1
element: <testLibraryFragment>::@setter::foo::@def::1#element
formalParameters
_ @33
element: <testLibraryFragment>::@setter::foo::@def::1::@parameter::_#element
topLevelVariables
synthetic foo
reference: <testLibrary>::@topLevelVariable::foo
firstFragment: <testLibraryFragment>::@topLevelVariable::foo
type: double
setter: <testLibraryFragment>::@setter::foo::@def::1#element
setters
static set foo
firstFragment: <testLibraryFragment>::@setter::foo::@def::0
formalParameters
requiredPositional _
type: int
static set foo
firstFragment: <testLibraryFragment>::@setter::foo::@def::1
formalParameters
requiredPositional _
type: double
''');
}
}
@reflectiveTest
class DuplicateDeclarationElementTest_fromBytes
extends DuplicateDeclarationElementTest {
@override
bool get keepLinkingLibraries => false;
}
@reflectiveTest
class DuplicateDeclarationElementTest_keepLinking
extends DuplicateDeclarationElementTest {
@override
bool get keepLinkingLibraries => true;
}