parser/tests/fixtures/0217/ast.txt

133 lines
3.7 KiB
Plaintext
Raw Normal View History

2022-12-03 20:31:10 +01:00
[
Class {
name: Identifier {
start: (
3,
7,
),
2022-12-03 20:31:10 +01:00
name: "s",
end: (
3,
9,
),
2022-12-03 20:31:10 +01:00
},
attributes: [],
2022-12-03 20:31:10 +01:00
extends: None,
implements: [],
body: [],
modifiers: ClassModifierGroup {
modifiers: [],
},
2022-12-03 20:31:10 +01:00
},
Class {
name: Identifier {
start: (
5,
7,
),
2022-12-03 20:31:10 +01:00
name: "foo",
end: (
5,
11,
),
2022-12-03 20:31:10 +01:00
},
attributes: [],
2022-12-03 20:31:10 +01:00
extends: Some(
Identifier {
start: (
5,
19,
),
2022-12-03 20:31:10 +01:00
name: "s",
end: (
5,
21,
),
2022-12-03 20:31:10 +01:00
},
),
implements: [],
body: [
Method(
Method {
start: (
6,
5,
),
end: (
8,
5,
),
name: Identifier {
start: (
6,
21,
),
name: "bar",
end: (
6,
24,
),
},
attributes: [],
parameters: MethodParameterList {
start: (
6,
24,
),
end: (
6,
26,
),
members: [],
},
body: Some(
[
Return {
value: Some(
New {
target: Identifier(
Identifier {
start: (
7,
20,
),
name: "s",
end: (
7,
21,
),
},
),
args: [],
},
),
2022-12-03 20:31:10 +01:00
},
],
),
modifiers: MethodModifierGroup {
modifiers: [
Public {
start: (
6,
5,
),
end: (
6,
12,
),
},
],
2022-12-03 20:31:10 +01:00
},
return_type: Some(
ParentReference,
),
by_ref: false,
},
),
2022-12-03 20:31:10 +01:00
],
modifiers: ClassModifierGroup {
modifiers: [],
},
2022-12-03 20:31:10 +01:00
},
]