blob: 6c45c81f2d6d74dde6ee02b645c0ab452b7eb66e [file] [log] [blame]
// ok, if option multistr is set
var test;
test = "hallo world\
\
this is a multiline string in javascript";
// never ok
// not detected as error before!
test = "hallo world
this is not a multiline string in javascript";
// mixed (should result in one error)
test = "hallo world\
this is a faulty multiline string in javascript";
test = "\033\t";
function octal_strictmode() {
"use strict";
var test = "\033\t";
test = "\0"; // Regression for false positives on \0
}