InvalidLine extends AbstractLine
FinalYes
A line that is syntactically invalid.
This is created by LosslessTokenizer whenever a line does not make sense. Examples: "foo.bar" - no operator "foo.bar <" - right side empty "@import ''" - no import value
Note only LosslessTokenizer creates these lines, LossyTokenizer just skips them.
Tags
Table of Contents
Properties
Methods
- getTokenStream() : TokenStreamInterface
- setTokenStream() : static
- Set and get the token stream that represents the full line. This is mostly used in backend to for instance create a TypoScript string back from tokenized lines.
Properties
$tokenStream
protected
TokenStreamInterface
$tokenStream
Methods
getTokenStream()
public
getTokenStream() : TokenStreamInterface
Return values
TokenStreamInterfacesetTokenStream()
Set and get the token stream that represents the full line. This is mostly used in backend to for instance create a TypoScript string back from tokenized lines.
public
setTokenStream(TokenStreamInterface $tokenStream) : static
Note: Only the LosslessTokenizer fills this 'full line' stream, LossyTokenizer does not for performance reasons.
Parameters
- $tokenStream : TokenStreamInterface