« Bugzilla Issues Index
#3723 — 21.2.3.1 RegExp ( pattern, flags ): steps 6.c and d must be run only if the flags argument is undefined
- bug_id:
3723
- creation_ts:
2015-01-31 13:31:00 -0800
- short_desc:
21.2.3.1 RegExp ( pattern, flags ): steps 6.c and d must be run only if the flags argument is undefined
- delta_ts:
2015-02-02 18:38:57 -0800
- product:
Draft for 6th Edition
- component:
technical issue
- version:
Rev 31: January 15, 2015 Draft
- rep_platform:
All
- op_sys:
All
- bug_status:
RESOLVED
- resolution:
FIXED
- priority:
Normal
- bug_severity:
normal
- everconfirmed:
true
- reporter:
Claude Pache
- assigned_to:
Allen Wirfs-Brock
- commentid:
11804
- comment_count:
0
- who:
Claude Pache
- bug_when:
2015-01-31 13:31:03 -0800
21.2.3.1 RegExp ( pattern, flags )
Currently:
6. ...
c. Let F be Get(pattern, "flags").
d. ReturnIfAbrupt(F).
Should be:
c. If flags is undefined, then
i. Let F be Get(pattern, "flags").
ii. ReturnIfAbrupt(F).
d. Else
i. Let F be flags.
- commentid:
11856
- comment_count:
1
- who:
Allen Wirfs-Brock
- bug_when:
2015-02-01 15:01:36 -0800
fixed in rev32 editor's draft
- commentid:
11991
- comment_count:
2
- who:
Allen Wirfs-Brock
- bug_when:
2015-02-02 18:38:57 -0800
fixed in rev32 draft