Skip to content
This repository has been archived by the owner on Jan 26, 2022. It is now read-only.

Commit

Permalink
Advance to stage 4 🎉
Browse files Browse the repository at this point in the history
tc39/ecma262#1028 has been merged as tc39/ecma262@d978ed1.

Closes #4.
  • Loading branch information
mathiasbynens committed Dec 19, 2017
1 parent 4d5438b commit 35e62b1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Status

This proposal is in stage 3 of [the TC39 process](https://tc39.github.io/process-document/).
This proposal is at stage 4 of [the TC39 process](https://tc39.github.io/process-document/).

## Motivation

Expand All @@ -18,7 +18,7 @@ ECMAScript recognizes the following line terminator characters:
* U+2028 LINE SEPARATOR
* U+2029 PARAGRAPH SEPARATOR

However, there are more characters that, depending on the use case, [could be considered as newline characters](http://www.unicode.org/reports/tr14/):
However, there are more characters that, depending on the use case, [could be considered as newline characters](https://www.unicode.org/reports/tr14/):

* U+000B VERTICAL TAB (`\v`)
* U+000C FORM FEED (`\f`)
Expand Down Expand Up @@ -53,7 +53,7 @@ Since the need to match any character is quite common, other regular expression
* Python supports both `re.DOTALL` and [`re.S`](https://docs.python.org/2/library/re.html#re.S).
* Engines that support embedded flag expressions implement `(?s)`.
* [Java](https://docs.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html#DOTALL)
* [C# and VB](https://msdn.microsoft.com/en-us/library/yd1hzczs.aspx)
* [C# and VB](https://docs.microsoft.com/en-us/dotnet/standard/base-types/regular-expression-options)
* Engines that support regular expression flags implement the flag `s`.
* [Perl](http://perldoc.perl.org/perlre.html#*s*)
* [PHP](https://secure.php.net/manual/en/reference.pcre.pattern.modifiers.php#s)
Expand Down
2 changes: 1 addition & 1 deletion spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<pre class="metadata">
title: s/dotAll flag for regular expressions
status: proposal
stage: 3
stage: 4
location: https://tc39.github.io/proposal-regexp-dotall-flag/
copyright: false
contributors: Mathias Bynens
Expand Down

0 comments on commit 35e62b1

Please sign in to comment.