class PhpWriter

PHP code generator helpers.

Methods

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

No description

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

No description

string
write(string $mask, mixed ...$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|null $tokens = null)

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

string
formatArray(MacroTokens|null $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|null $tokens = null)

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

void
validateTokens(MacroTokens $tokens)

No description

void
validateKeywords(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].

sandboxPass(MacroTokens $tokens)

Applies sandbox policy.

inlineModifierPass(MacroTokens $tokens)

Process inline filters ($var|filter)

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

Formats modifiers calling.

escapePass(MacroTokens $tokens)

Escapes expression in tokens.

Details

at line 36
static PhpWriter using(MacroNode $node, Compiler|null $compiler = null)

No description

Parameters

MacroNode $node
Compiler|null $compiler

Return Value

PhpWriter

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

No description

Parameters

MacroTokens $tokens
string|null $modifiers
array|null $context

at line 61
string write(string $mask, mixed ...$args)

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

Parameters

string $mask
mixed ...$args

Return Value

string

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

Formats modifiers calling.

Parameters

string $var
bool $isContent

Return Value

string

at line 141
string formatArgs(MacroTokens|null $tokens = null)

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

Parameters

MacroTokens|null $tokens

Return Value

string

at line 153
string formatArray(MacroTokens|null $tokens = null)

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

Parameters

MacroTokens|null $tokens

Return Value

string

at line 166
string formatWord(string $s)

Formats parameter to PHP string.

Parameters

string $s

Return Value

string

at line 177
MacroTokens preprocess(MacroTokens|null $tokens = null)

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

Parameters

MacroTokens|null $tokens

Return Value

MacroTokens

at line 193
void validateTokens(MacroTokens $tokens)

No description

Parameters

MacroTokens $tokens

Return Value

void

Exceptions

CompileException

at line 241
void validateKeywords(MacroTokens $tokens)

No description

Parameters

MacroTokens $tokens

Return Value

void

Exceptions

CompileException

at line 272
MacroTokens removeCommentsPass(MacroTokens $tokens)

Removes PHP comments.

Parameters

MacroTokens $tokens

Return Value

MacroTokens

at line 286
MacroTokens replaceFunctionsPass(MacroTokens $tokens)

Replace global functions with custom ones.

Parameters

MacroTokens $tokens

Return Value

MacroTokens

at line 314
MacroTokens shortTernaryPass(MacroTokens $tokens)

Simplified ternary expressions without third part.

Parameters

MacroTokens $tokens

Return Value

MacroTokens

at line 351
MacroTokens optionalChainingPass(MacroTokens $tokens)

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

Parameters

MacroTokens $tokens

Return Value

MacroTokens

at line 418
MacroTokens expandCastPass(MacroTokens $tokens)

Pseudocast (expand).

Parameters

MacroTokens $tokens

Return Value

MacroTokens

at line 447
MacroTokens quotingPass(MacroTokens $tokens)

Quotes symbols to strings.

Parameters

MacroTokens $tokens

Return Value

MacroTokens

at line 468
MacroTokens inOperatorPass(MacroTokens $tokens)

Syntax $entry in [item1, item2].

Parameters

MacroTokens $tokens

Return Value

MacroTokens

at line 505
MacroTokens sandboxPass(MacroTokens $tokens)

Applies sandbox policy.

Parameters

MacroTokens $tokens

Return Value

MacroTokens

at line 629
MacroTokens inlineModifierPass(MacroTokens $tokens)

Process inline filters ($var|filter)

Parameters

MacroTokens $tokens

Return Value

MacroTokens

at line 698
MacroTokens modifierPass(MacroTokens $tokens, $var, bool $isContent = false)

Formats modifiers calling.

Parameters

MacroTokens $tokens
$var
bool $isContent

Return Value

MacroTokens

Exceptions

CompileException

at line 766
MacroTokens escapePass(MacroTokens $tokens)

Escapes expression in tokens.

Parameters

MacroTokens $tokens

Return Value

MacroTokens

Traits

Better OOP experience.