parser/tests/0110/ast.txt
Saif Eddin Gmati b6c145f98e
fix: attributes support (#155)
Signed-off-by: azjezz <azjezz@protonmail.com>
2022-12-04 16:12:23 +01:00

86 lines
2.5 KiB
Plaintext

[
Class {
name: Identifier {
name: "foo",
},
attributes: [],
extends: None,
implements: [],
body: [
Method {
name: Identifier {
name: "__construct",
},
attributes: [],
params: [
Param {
name: Variable {
name: "a",
},
attributes: [],
type: Some(
String,
),
variadic: false,
default: None,
flags: [
Public,
],
by_ref: false,
},
Param {
name: Variable {
name: "b",
},
attributes: [],
type: Some(
Integer,
),
variadic: false,
default: None,
flags: [
Public,
Readonly,
],
by_ref: false,
},
Param {
name: Variable {
name: "c",
},
attributes: [],
type: Some(
Float,
),
variadic: false,
default: None,
flags: [
Public,
Readonly,
],
by_ref: true,
},
Param {
name: Variable {
name: "e",
},
attributes: [],
type: None,
variadic: true,
default: None,
flags: [],
by_ref: false,
},
],
body: [],
flags: [
Public,
],
return_type: None,
by_ref: false,
},
],
flags: [],
},
]