lexer icon indicating copy to clipboard operation
lexer copied to clipboard

PHP lexical analyzer

Results 1 lexer issues
Sort by recently updated
recently updated
newest added

Currently, this module only allows adding definitions by adding TokenDefn objects. TokenDefn constructor has this line: `$this->regex = sprintf('%s^%s%s%s', $delimiter, $regex, $delimiter, $modifiers);` Sometimes, you don't want to add `^`...