mirror of
https://github.com/danog/parser.git
synced 2024-12-02 09:27:50 +01:00
45 lines
979 B
Plaintext
45 lines
979 B
Plaintext
[
|
|
Expression {
|
|
expr: MethodCall {
|
|
target: Variable {
|
|
name: "foo",
|
|
},
|
|
method: Identifier {
|
|
name: "bar",
|
|
},
|
|
args: [],
|
|
},
|
|
},
|
|
Expression {
|
|
expr: MethodCall {
|
|
target: MethodCall {
|
|
target: Variable {
|
|
name: "foo",
|
|
},
|
|
method: Identifier {
|
|
name: "bar",
|
|
},
|
|
args: [],
|
|
},
|
|
method: Identifier {
|
|
name: "baz",
|
|
},
|
|
args: [],
|
|
},
|
|
},
|
|
Expression {
|
|
expr: Call {
|
|
target: MethodCall {
|
|
target: Variable {
|
|
name: "foo",
|
|
},
|
|
method: Identifier {
|
|
name: "bar",
|
|
},
|
|
args: [],
|
|
},
|
|
args: [],
|
|
},
|
|
},
|
|
]
|