mirror of
https://github.com/danog/parser.git
synced 2024-11-26 20:04:57 +01:00
b6c145f98e
Signed-off-by: azjezz <azjezz@protonmail.com>
86 lines
2.5 KiB
Plaintext
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: [],
|
|
},
|
|
]
|