php-parser/visitor/dumper_test.go

93 lines
3.2 KiB
Go
Raw Normal View History

2018-02-27 21:38:05 +00:00
// Package visitor contains walker.visitor implementations
package visitor_test
import (
"bytes"
"github.com/z7zmey/php-parser/php7"
"github.com/z7zmey/php-parser/visitor"
)
func ExampleDumper() {
src := `<?php
namespace Foo {
class Bar {
public function FunctionName(Type $var = null)
{
// some comment
$var;
}
}
}`
nodes, comments, positions := php7.Parse(bytes.NewBufferString(src), "test.php")
dumper := visitor.Dumper{
Indent: "| ",
Comments: comments,
Positions: positions,
}
nodes.Walk(dumper)
// Unordered output:
2018-02-27 21:38:05 +00:00
//| *stmt.StmtList Pos{Line: 3-11 Pos: 10-143}
//| "Stmts":
//| *stmt.Namespace Pos{Line: 3-11 Pos: 10-143}
//| "NamespaceName":
//| *name.Name Pos{Line: 3-3 Pos: 20-22}
//| "Parts":
//| *name.NamePart Pos{Line: 3-3 Pos: 20-22}
//| "Value": Foo;
2018-02-27 21:38:05 +00:00
//| "Stmts":
//| *stmt.Class Pos{Line: 4-10 Pos: 29-139}
//| "PhpDocComment": ;
2018-02-27 21:38:05 +00:00
//| "ClassName":
//| *node.Identifier Pos{Line: 4-4 Pos: 35-37}
//| "Value": Bar;
2018-02-27 21:38:05 +00:00
//| "Stmts":
//| *stmt.ClassMethod Pos{Line: 5-9 Pos: 45-134}
//| "ReturnsRef": false;
//| "PhpDocComment": ;
2018-02-27 21:38:05 +00:00
//| "MethodName":
//| *node.Identifier Pos{Line: 5-5 Pos: 61-72}
//| "Value": FunctionName;
2018-02-27 21:38:05 +00:00
//| "Modifiers":
//| *node.Identifier Pos{Line: 5-5 Pos: 45-50}
//| "Value": public;
2018-02-27 21:38:05 +00:00
//| "Params":
//| *node.Parameter Pos{Line: 5-5 Pos: 74-89}
//| "ByRef": false;
//| "Variadic": false;
2018-02-27 21:38:05 +00:00
//| "VariableType":
//| *name.Name Pos{Line: 5-5 Pos: 74-77}
//| "Parts":
//| *name.NamePart Pos{Line: 5-5 Pos: 74-77}
//| "Value": Type;
2018-02-27 21:38:05 +00:00
//| "Variable":
//| *expr.Variable Pos{Line: 5-5 Pos: 79-82}
//| "VarName":
//| *node.Identifier Pos{Line: 5-5 Pos: 79-82}
//| "Value": $var;
2018-02-27 21:38:05 +00:00
//| "DefaultValue":
//| *expr.ConstFetch Pos{Line: 5-5 Pos: 86-89}
//| "Constant":
//| *name.Name Pos{Line: 5-5 Pos: 86-89}
//| "Parts":
//| *name.NamePart Pos{Line: 5-5 Pos: 86-89}
//| "Value": null;
2018-02-27 21:38:05 +00:00
//| "Stmts":
//| *stmt.Expression Pos{Line: 8-8 Pos: 124-128}
//| "Comments":
2018-02-27 21:38:05 +00:00
//| "// some comment\n"
//| "Expr":
//| *expr.Variable Pos{Line: 8-8 Pos: 124-127}
//| "Comments":
2018-02-27 21:38:05 +00:00
//| "// some comment\n"
//| "VarName":
//| *node.Identifier Pos{Line: 8-8 Pos: 124-127}
//| "Value": $var;
//| "Comments":
2018-02-27 21:38:05 +00:00
//| "// some comment\n"
}