Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
22fe702f
Commit
22fe702f
authored
May 14, 2012
by
Francois Gouget
Committed by
Alexandre Julliard
May 14, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jscript/tests: Fix the spelling of the testEmbeddedFunctions() function name.
parent
fde4e8f9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lang.js
dlls/jscript/tests/lang.js
+2
-2
No files found.
dlls/jscript/tests/lang.js
View file @
22fe702f
...
@@ -1215,7 +1215,7 @@ ok(tmp === 5, "testFunc4(1) = " + tmp);
...
@@ -1215,7 +1215,7 @@ ok(tmp === 5, "testFunc4(1) = " + tmp);
tmp = function testFunc4(x) { return x+4; };
tmp = function testFunc4(x) { return x+4; };
ok(testFunc4 === 1, "
testFunc4
=
" + testFunc4);
ok(testFunc4 === 1, "
testFunc4
=
" + testFunc4);
function testEmbededFunctions() {
function testEmbed
d
edFunctions() {
ok(typeof(testFunc5) === "
function
", "
typeof
(
testFunc5
)
=
" + typeof(testFunc5));
ok(typeof(testFunc5) === "
function
", "
typeof
(
testFunc5
)
=
" + typeof(testFunc5));
tmp = testFunc5(1);
tmp = testFunc5(1);
ok(tmp === 3, "
testFunc5
(
1
)
=
" + tmp);
ok(tmp === 3, "
testFunc5
(
1
)
=
" + tmp);
...
@@ -1231,7 +1231,7 @@ function testEmbededFunctions() {
...
@@ -1231,7 +1231,7 @@ function testEmbededFunctions() {
ok(testFunc6 === 1, "
testFunc4
=
" + testFunc6);
ok(testFunc6 === 1, "
testFunc4
=
" + testFunc6);
}
}
testEmbededFunctions();
testEmbed
d
edFunctions();
date = new Date();
date = new Date();
date.toString = function() { return "
toString
"; }
date.toString = function() { return "
toString
"; }
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment