 Documentation
      ¶
      Documentation
      ¶
    
    
  
    
  
    Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Comment ¶
type Comment interface {
	String() string
}
    Comment represents comment lines in the code
type DocComment ¶
type DocComment struct {
	// contains filtered or unexported fields
}
    DocComment represents comments that start /**
func NewDocComment ¶
func NewDocComment(value string) *DocComment
NewDocComment - DocComment constructor
func (*DocComment) String ¶
func (c *DocComment) String() string
type PlainComment ¶
type PlainComment struct {
	// contains filtered or unexported fields
}
    PlainComment represents comments that dont start /**
func NewPlainComment ¶
func NewPlainComment(value string) *PlainComment
NewPlainComment - PlainComment constructor
func (*PlainComment) String ¶
func (c *PlainComment) String() string
 Click to show internal directories. 
   Click to hide internal directories.