class PhpWriter

PHP code generator helpers.

Methods

static PhpWriter
using(MacroNode $node, Compiler $compiler = null)

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.

replaceFunctionsPass(MacroTokens $tokens)

Replace global functions with custom ones.

shortTernaryPass(MacroTokens $tokens)

Simplified ternary expressions without third part.

optionalChainingPass(MacroTokens $tokens)

Optional Chaining $var?->prop?->elem[1]?->call()?->item

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 33
static PhpWriter using(MacroNode $node, Compiler $compiler = null)

No description

Parameters

MacroNode $node
Compiler $compiler

Return Value

PhpWriter

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

No description

Parameters

MacroTokens $tokens
string $modifiers
array $context

at line 53
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 117
string formatModifiers(string $var, bool $isContent = false)

Formats modifiers calling.

Parameters

string $var
bool $isContent

Return Value

string

at line 130
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 141
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 153
string formatWord(string $s)

Formats parameter to PHP string.

Parameters

string $s

Return Value

string

at line 164
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 179
void validateTokens(MacroTokens $tokens)

No description

Parameters

MacroTokens $tokens

Return Value

void

Exceptions

CompileException

at line 216
MacroTokens removeCommentsPass(MacroTokens $tokens)

Removes PHP comments.

Parameters

MacroTokens $tokens

Return Value

MacroTokens

at line 231
MacroTokens replaceFunctionsPass(MacroTokens $tokens)

Replace global functions with custom ones.

Parameters

MacroTokens $tokens

Return Value

MacroTokens

at line 257
MacroTokens shortTernaryPass(MacroTokens $tokens)

Simplified ternary expressions without third part.

Parameters

MacroTokens $tokens

Return Value

MacroTokens

at line 297
MacroTokens optionalChainingPass(MacroTokens $tokens)

Optional Chaining $var?->prop?->elem[1]?->call()?->item

Parameters

MacroTokens $tokens

Return Value

MacroTokens

at line 371
MacroTokens expandCastPass(MacroTokens $tokens)

Pseudocast (expand).

Parameters

MacroTokens $tokens

Return Value

MacroTokens

at line 399
MacroTokens quotingPass(MacroTokens $tokens)

Quotes symbols to strings.

Parameters

MacroTokens $tokens

Return Value

MacroTokens

at line 419
MacroTokens inOperatorPass(MacroTokens $tokens)

Syntax $entry in [item1, item2].

Parameters

MacroTokens $tokens

Return Value

MacroTokens

at line 454
MacroTokens inlineModifierPass(MacroTokens $tokens)

Process inline filters ($var|filter)

Parameters

MacroTokens $tokens

Return Value

MacroTokens

at line 517
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 572
MacroTokens escapePass(MacroTokens $tokens)

Escapes expression in tokens.

Parameters

MacroTokens $tokens

Return Value

MacroTokens

Traits

Better OOP experience.