Go\Aop\Pointcut\PointcutLexer::__construct PHP Method

__construct() public method

Lexer token definitions
public __construct ( )
    public function __construct()
    {
        // General tokens
        $this->token('execution');
        $this->token('dynamic');
        $this->token('within');
        $this->token('access');
        $this->token('cflowbelow');
        $this->token('initialization');
        $this->token('staticinitialization');
        $this->token('matchInherited');
        // Parenthesis
        $this->token('(');
        $this->token(')');
        // Member modifiers
        $this->token('public');
        $this->token('protected');
        $this->token('private');
        $this->token('final');
        // Access type (dynamic or static)
        $this->token('->');
        $this->token('::');
        // Logic tokens
        $this->token('!');
        $this->token('&');
        $this->token('&&');
        $this->token('|');
        $this->token('||');
        $this->token('annotation', '@');
        // Regex for class name
        $this->regex('namePart', '/^[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*/');
        // NS separator
        $this->token('nsSeparator', '\\');
        // Special wildcard tokens
        $this->token('+');
        $this->token('*');
        $this->token('**');
        // White spaces
        $this->regex('WSP', "/^[ \r\n\t]+/");
        // Comments
        $this->regex('CMT', "|^//.*|");
        $this->skip('CMT', 'WSP');
    }
PointcutLexer