Closed jhiswin closed 10 years ago
This error occurred, because vbscripts allows octal constants to be defined by &o[0-7]+. The unexpected letter 'b' was the one from &objNode. This was fixable by inserting a space between the & and the o, because then the look ahead did not analyze for a constant anymore.
Error: unexpected char: 'b'
Adding spaces between the "&"s is a workaround.