PHP Класс PHP_CodeSniffer_Tokenizers_JS, PHP_CodeSniffer

Автор: Greg Sherwood ([email protected])
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
$endScopeTokens array This array is just a unique collection of the end tokens from the _scopeOpeners array. The data is duplicated here to save time during parsing of the file.
$scopeOpeners array This array also contains information about what kind of token the scope opener uses to open and close the scope, if the token strictly requires an opener, if the token can share a scope closer, and who it can be shared with. An example of a token that shares a scope closer is a CASE scope.
$skipMinified boolean If TRUE, files that appear to be minified will not be processed.

Защищенные свойства (Protected)

Свойство Тип Описание
$commentTokens array A list tokens that start and end comments.
$stringTokens array A list string delimiters.
$tokenValues array A list of special JS tokens and their types.

Открытые методы

Метод Описание
getRegexToken ( string $char, string $string, string $chars, string $tokens, string $eolChar ) : void Tokenizes a regular expression if one is found.
processAdditional ( array &$tokens, string $eolChar ) : void Performs additional processing after main tokenizing.
tokenizeString ( string $string, string $eolChar = '\n' ) : array Creates an array of tokens when given some JS code.

Описание методов

getRegexToken() публичный Метод

If a regular expression is not found, NULL is returned.
public getRegexToken ( string $char, string $string, string $chars, string $tokens, string $eolChar ) : void
$char string The index of the possible regex start character.
$string string The complete content of the string being tokenized.
$chars string An array of characters being tokenized.
$tokens string The current array of tokens found in the string.
$eolChar string The EOL character to use for splitting strings.
Результат void

processAdditional() публичный Метод

This additional processing looks for properties, closures, labels and objects.
public processAdditional ( array &$tokens, string $eolChar ) : void
$tokens array The array of tokens to process.
$eolChar string The EOL character to use for splitting strings.
Результат void

tokenizeString() публичный Метод

Creates an array of tokens when given some JS code.
public tokenizeString ( string $string, string $eolChar = '\n' ) : array
$string string The string to tokenize.
$eolChar string The EOL character to use for splitting strings.
Результат array

Описание свойств

$commentTokens защищенное свойство

A list tokens that start and end comments.
protected array $commentTokens
Результат array

$endScopeTokens публичное свойство

This array is just a unique collection of the end tokens from the _scopeOpeners array. The data is duplicated here to save time during parsing of the file.
public array $endScopeTokens
Результат array

$scopeOpeners публичное свойство

This array also contains information about what kind of token the scope opener uses to open and close the scope, if the token strictly requires an opener, if the token can share a scope closer, and who it can be shared with. An example of a token that shares a scope closer is a CASE scope.
public array $scopeOpeners
Результат array

$skipMinified публичное свойство

If TRUE, files that appear to be minified will not be processed.
public bool $skipMinified
Результат boolean

$stringTokens защищенное свойство

A list string delimiters.
protected array $stringTokens
Результат array

$tokenValues защищенное свойство

A list of special JS tokens and their types.
protected array $tokenValues
Результат array