* Clarify recognition of "command form" by MATLAB parser. Expand a bit the explanation; remove an unnecessary non-capturing group, replace \s+ by \s at the end (we just need to check for the presence of a space). * MATLAB: Correctly parse 1./x as (1)(./)(x).
10 lines
178 B
Text
10 lines
178 B
Text
# 1./x is (1)(./)(x), not (1.)(/)(x)
|
|
|
|
---input---
|
|
1./x
|
|
|
|
---tokens---
|
|
'1' Literal.Number.Integer
|
|
'./' Operator
|
|
'x' Name
|
|
'\n' Text.Whitespace
|