This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 90864
Collapse All | Expand All

(-)JavaScript.nbs (-1 / +3 lines)
Lines 123-129 Link Here
123
#    "/" ( [^ "\n" "\r"] )* "/" ['g' 'i' 'm']*
123
#    "/" ( [^ "\n" "\r"] )* "/" ['g' 'i' 'm']*
124
#)
124
#)
125
TOKEN:js-number: (
125
TOKEN:js-number: (
126
    (["0"-"9"]+ ("." ["0"-"9"]*)? | "." ["0"-"9"]+) ("E" ("-")? ["0"-"9"]+)? 
126
    (["0"-"9"]+ ("." ["0"-"9"]*)? | "." ["0"-"9"]+) ("E" ("-")? ["0"-"9"]+)? |
127
    ("0x" (["0"-"9" "a"-"f" "A"-"F"]+)) |
128
    ("0X" (["0"-"9" "a"-"f" "A"-"F"]+))
127
)
129
)
128
130
129
TOKEN:js-whitespace: ([" " "\t" "\n" "\r"]+)
131
TOKEN:js-whitespace: ([" " "\t" "\n" "\r"]+)

Return to bug 90864