Class PuppetLint::Lexer::Token
In: lib/puppet-lint/lexer/token.rb
Parent: Object

Methods

inspect   new  

Attributes

column  [R]  Internal: Returns the Integer column number of the line of the manifest text where the Token can be found.
line  [R]  Internal: Returns the Integer line number of the manifest text where the Token can be found.
next_code_token  [RW]  Internal: Gets/sets the next code token (skips whitespace, comments, etc) in the manifest.
next_token  [RW]  Internal: Gets/sets the next token in the manifest.
prev_code_token  [RW]  Internal: Gets/sets the previous code tokne (skips whitespace, comments, etc) in the manifest.
prev_token  [RW]  Internal: Gets/sets the previous token in the manifest.
type  [R]  Internal: Returns the Symbol type of the Token.
value  [R]  Internal: Returns the String value of the Token.

Public Class methods

Internal: Initialise a new Token object.

type - An upper case Symbol describing the type of Token. value - The String value of the Token. line - The Integer line number where the Token can be found in the

         manifest.

column - The Integer number of characters from the start of the line to

         the start of the Token.

Returns the instantiated Token.

Public Instance methods

Internal: Produce a human friendly description of the Token when inspected.

Returns a String describing the Token.

[Validate]