class PhpWriter

PHP code generator helpers.

Methods

static PhpWriter
using(MacroNode $node)

No description

__construct(MacroTokens $tokens, string $modifiers = null, array $context = null)

No description

string
write(string $mask, ...$args)

Expands %node.word, %node.array, %node.args, %escape(), %modify(), %var, %raw, %word in code.

string
formatModifiers(string $var, bool $isContent = false)

Formats modifiers calling.

string
formatArgs(MacroTokens $tokens = null)

Formats macro arguments to PHP code. (It advances tokenizer to the end as a side effect.)

string
formatArray(MacroTokens $tokens = null)

Formats macro arguments to PHP array. (It advances tokenizer to the end as a side effect.)

string
formatWord(string $s)

Formats parameter to PHP string.

preprocess(MacroTokens $tokens = null)

Preprocessor for tokens. (It advances tokenizer to the end as a side effect.)

void
validateTokens(MacroTokens $tokens)

No description

removeCommentsPass(MacroTokens $tokens)

Removes PHP comments.

shortTernaryPass(MacroTokens $tokens)

Simplified ternary expressions without third part.

expandCastPass(MacroTokens $tokens)

Pseudocast (expand).

quotingPass(MacroTokens $tokens)

Quotes symbols to strings.

inOperatorPass(MacroTokens $tokens)

Syntax $entry in [item1, item2].

inlineModifierPass(MacroTokens $tokens)

Process inline filters ($var|filter)

modifierPass(MacroTokens $tokens, string|array $var, bool $isContent = false)

Formats modifiers calling.

escapePass(MacroTokens $tokens)

Escapes expression in tokens.

Details

at line 30
static PhpWriter using(MacroNode $node)

No description

Parameters

MacroNode $node

Return Value

PhpWriter

at line 38
__construct(MacroTokens $tokens, string $modifiers = null, array $context = null)

No description

Parameters

MacroTokens $tokens
string $modifiers
array $context

at line 49
string write(string $mask, ...$args)

Expands %node.word, %node.array, %node.args, %escape(), %modify(), %var, %raw, %word in code.

Parameters

string $mask
...$args

Return Value

string

at line 113
string formatModifiers(string $var, bool $isContent = false)

Formats modifiers calling.

Parameters

string $var
bool $isContent

Return Value

string

at line 126
string formatArgs(MacroTokens $tokens = null)

Formats macro arguments to PHP code. (It advances tokenizer to the end as a side effect.)

Parameters

MacroTokens $tokens

Return Value

string

at line 137
string formatArray(MacroTokens $tokens = null)

Formats macro arguments to PHP array. (It advances tokenizer to the end as a side effect.)

Parameters

MacroTokens $tokens

Return Value

string

at line 149
string formatWord(string $s)

Formats parameter to PHP string.

Parameters

string $s

Return Value

string

at line 160
MacroTokens preprocess(MacroTokens $tokens = null)

Preprocessor for tokens. (It advances tokenizer to the end as a side effect.)

Parameters

MacroTokens $tokens

Return Value

MacroTokens

at line 175
void validateTokens(MacroTokens $tokens)

No description

Parameters

MacroTokens $tokens

Return Value

void

Exceptions

CompileException

at line 212
MacroTokens removeCommentsPass(MacroTokens $tokens)

Removes PHP comments.

Parameters

MacroTokens $tokens

Return Value

MacroTokens

at line 227
MacroTokens shortTernaryPass(MacroTokens $tokens)

Simplified ternary expressions without third part.

Parameters

MacroTokens $tokens

Return Value

MacroTokens

at line 258
MacroTokens expandCastPass(MacroTokens $tokens)

Pseudocast (expand).

Parameters

MacroTokens $tokens

Return Value

MacroTokens

at line 286
MacroTokens quotingPass(MacroTokens $tokens)

Quotes symbols to strings.

Parameters

MacroTokens $tokens

Return Value

MacroTokens

at line 306
MacroTokens inOperatorPass(MacroTokens $tokens)

Syntax $entry in [item1, item2].

Parameters

MacroTokens $tokens

Return Value

MacroTokens

at line 341
MacroTokens inlineModifierPass(MacroTokens $tokens)

Process inline filters ($var|filter)

Parameters

MacroTokens $tokens

Return Value

MacroTokens

at line 404
MacroTokens modifierPass(MacroTokens $tokens, string|array $var, bool $isContent = false)

Formats modifiers calling.

Parameters

MacroTokens $tokens
string|array $var
bool $isContent

Return Value

MacroTokens

Exceptions

CompileException

at line 461
MacroTokens escapePass(MacroTokens $tokens)

Escapes expression in tokens.

Parameters

MacroTokens $tokens

Return Value

MacroTokens

Traits

Better OOP experience.