blob: 721b05e9f2249c38537be8a92acc82fac9e233ca (
plain)
1
2
3
4
5
6
7
8
9
10
|
actual = 'No Error';
expected = /column-numbers\.js:4:11/;
try {
throw new Error("test");
}
catch(ex) {
actual = ex.stack;
print('Caught exception ' + ex.stack);
}
reportMatch(expected, actual, 'column number present');
|