This repository has been archived by the owner on Oct 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 339
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Merge chakra-core/ChakraCore@1cadbb3b51] [1.6>1.7] [MERGE #3470 @tcare…
…] [Disabled Tests] test/Error/rlexe.xml: tests tagged
- Loading branch information
Showing
15 changed files
with
42 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
sourceInfo_00.js(9, 1) JavaScript runtime error: Object doesn't support this property or method | ||
ReferenceError: 'nosuchfunc' is not defined | ||
at Global code (sourceInfo_00.js:14:1) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,5 +11,5 @@ function dummy() { | |
} | ||
|
||
dummy(); | ||
nosuchfunc(); //9,1 | ||
nosuchfunc(); | ||
dummy(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
sourceInfo_01.js(9, 3) JavaScript runtime error: Exception thrown and not caught | ||
thrown at sourceInfo_01.js: | ||
^ | ||
123 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,5 +11,5 @@ function dummy() { | |
} | ||
|
||
dummy(); | ||
throw 123; //9,3 | ||
throw 123; | ||
dummy(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
sourceInfo_10.js(10, 3) JavaScript runtime error: Object doesn't support this property or method | ||
TypeError: Object doesn't support property or method 'nosuchfunc' | ||
at Global code (sourceInfo_10.js:15:3) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,5 +12,5 @@ function dummy() { | |
|
||
dummy(); | ||
var obj = {}; | ||
obj.nosuchfunc(); //10,3 | ||
obj.nosuchfunc(); | ||
dummy(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
sourceInfo_11.js(12, 9) JavaScript runtime error: Exception thrown and not caught | ||
thrown at sourceInfo_11.js: | ||
^ | ||
123 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ dummy(); | |
var obj = { | ||
func: function () { | ||
dummy(); | ||
throw 123; //12,9 | ||
throw 123; | ||
dummy(); | ||
} | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
sourceInfo_12.js(12, 1) JavaScript runtime error: Function expected | ||
TypeError: Function.prototype.apply: 'this' is not a Function object | ||
at Global code (sourceInfo_12.js:17:1) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,5 +14,5 @@ dummy(); | |
var obj = { | ||
apply: Function.prototype.apply | ||
}; | ||
obj.apply(); //12,1 | ||
obj.apply(); | ||
dummy(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
sourceInfo_13.js(12, 9) JavaScript runtime error: Exception thrown and not caught | ||
thrown at sourceInfo_13.js: | ||
^ | ||
123 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
sourceInfo_20.js(10, 5) JavaScript runtime error: Exception thrown and not caught | ||
thrown at sourceInfo_20.js: | ||
^ | ||
123 |