parser/tests/fixtures/0045/ast.txt
Saif Eddin Gmati c93634a62b
chore: refactor class and trait ast (#189)
Signed-off-by: azjezz <azjezz@protonmail.com>

Signed-off-by: azjezz <azjezz@protonmail.com>
2022-12-09 22:05:03 +01:00

82 lines
2.3 KiB
Plaintext

[
Class(
Class {
start: (
3,
1,
),
end: (
7,
1,
),
name: Identifier {
start: (
3,
7,
),
name: "Foo",
end: (
3,
11,
),
},
extends: None,
implements: None,
attributes: [],
members: [
Method(
Method {
start: (
4,
5,
),
end: (
6,
5,
),
name: Identifier {
start: (
4,
14,
),
name: "bar",
end: (
4,
17,
),
},
attributes: [],
parameters: MethodParameterList {
start: (
4,
17,
),
end: (
4,
20,
),
members: [],
},
body: Some(
[
Echo {
values: [
LiteralInteger {
i: "1",
},
],
},
],
),
modifiers: MethodModifierGroup {
modifiers: [],
},
return_type: None,
by_ref: false,
},
),
],
},
),
]