File tree 2 files changed +6
-3
lines changed
src/test/java/org/htmlunit/corejs
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 4
4
<modelVersion >4.0.0</modelVersion >
5
5
<groupId >org.htmlunit</groupId >
6
6
<artifactId >htmlunit-core-js</artifactId >
7
- <version >4.4.0 </version >
7
+ <version >4.5.0-SNAPSHOT </version >
8
8
<name >HtmlUnit JavaScript Engine</name >
9
9
<organization >
10
10
<name >HtmlUnit</name >
128
128
<includes >
129
129
<include >**/*.java</include >
130
130
</includes >
131
+ <excludes >
132
+ <exclude >javascript/optimizer/**/*.java</exclude >
133
+ </excludes >
131
134
</resource >
132
135
<resource >
133
136
<directory >../htmlunit-rhino-fork/rhino-tools/src/main/java/org/mozilla</directory >
Original file line number Diff line number Diff line change @@ -26,9 +26,9 @@ public void testFailureStackTrace() {
26
26
final String source2 = "function f2() { 'H'.toLowerCase(); throw 'hello'; }; f2();" ;
27
27
28
28
runWithExpectedStackTrace (source1 ,
29
- "\t at test.js (f2)" + lineSeparator + "\t at test.js" + lineSeparator ); // works
29
+ "\t at test.js:0 (f2)" + lineSeparator + "\t at test.js:0 " + lineSeparator ); // works
30
30
runWithExpectedStackTrace (source2 ,
31
- "\t at test.js (f2)" + lineSeparator + "\t at test.js" + lineSeparator ); // fails
31
+ "\t at test.js:0 (f2)" + lineSeparator + "\t at test.js:0 " + lineSeparator ); // fails
32
32
}
33
33
34
34
private static void runWithExpectedStackTrace (final String _source , final String _expectedStackTrace ) {
You can’t perform that action at this time.
0 commit comments