update package comments

This commit is contained in:
z7zmey 2018-02-20 20:22:15 +02:00
parent d320208aff
commit 7a0e5fc758
5 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,4 @@
// Package php5 parses PHP5
package php5 package php5
import ( import (

View File

@ -1,3 +1,4 @@
// Package php7 parses PHP7
package php7 package php7
import ( import (

View File

@ -1,3 +1,4 @@
// Package scanner transforms an input string into a stream of PHP tokens.
package scanner package scanner
import ( import (

View File

@ -1,4 +1,5 @@
package visitor // Visitor implementations // Package visitor contains walker.visitor implementations
package visitor
import ( import (
"fmt" "fmt"

View File

@ -1,4 +1,5 @@
package walker // Node walking behavior // Package walker declares walking behavior
package walker
// Walkable interface // Walkable interface
// //