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
2db16660
Commit
2db16660
authored
May 25, 2016
by
Jacek Caban
Committed by
Alexandre Julliard
May 25, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jscript: Added RegExp.ignoreCase getter implementation.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
2ad46661
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
+11
-2
jsregexp.c
dlls/jscript/jsregexp.c
+4
-2
regexp.js
dlls/jscript/tests/regexp.js
+7
-0
No files found.
dlls/jscript/jsregexp.c
View file @
2db16660
...
...
@@ -276,8 +276,10 @@ static HRESULT RegExp_set_global(script_ctx_t *ctx, jsdisp_t *jsthis, jsval_t va
static
HRESULT
RegExp_get_ignoreCase
(
script_ctx_t
*
ctx
,
jsdisp_t
*
jsthis
,
jsval_t
*
r
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
TRACE
(
"
\n
"
);
*
r
=
jsval_bool
(
!!
(
regexp_from_jsdisp
(
jsthis
)
->
jsregexp
->
flags
&
REG_FOLD
));
return
S_OK
;
}
static
HRESULT
RegExp_set_ignoreCase
(
script_ctx_t
*
ctx
,
jsdisp_t
*
jsthis
,
jsval_t
value
)
...
...
dlls/jscript/tests/regexp.js
View file @
2db16660
...
...
@@ -660,4 +660,11 @@ tmp = new RegExp("abc/", "mgi");
ok
(
tmp
.
toString
()
===
"/abc//igm"
,
"(new RegExp(
\"
abc/
\"
)).toString() = "
+
tmp
.
toString
());
ok
(
/abc/
.
toString
(
1
,
false
,
"3"
)
===
"/abc/"
,
"/abc/.toString(1, false,
\"
3
\"
) = "
+
/abc/
.
toString
());
re
=
/x/
;
ok
(
re
.
ignoreCase
===
false
,
"re.ignoreCase = "
+
re
.
ignoreCase
);
re
=
/x/i
;
ok
(
re
.
ignoreCase
===
true
,
"re.ignoreCase = "
+
re
.
ignoreCase
);
re
=
new
RegExp
(
"xxx"
,
"gi"
);
ok
(
re
.
ignoreCase
===
true
,
"re.ignoreCase = "
+
re
.
ignoreCase
);
reportSuccess
();
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