Skip to content

Commit

Permalink
Normative: update Annex B regexp grammar
Browse files Browse the repository at this point in the history
The re-definitions of ClassAtomNoDash and ClassAtomNoDashInRange should
have had their definitions updated with the previous Annex B updates,
but only their uses were.

Fixes #382.
  • Loading branch information
bterlson committed Feb 18, 2016
1 parent b72b85e commit 6ba35eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -35927,15 +35927,15 @@ <h2>Syntax</h2>

ClassAtomNoDash[U] ::
`\` ClassEscape[?U]
SourceCharacter but not one of `\` or `]` or `-`
SourceCharacter but not one of `]` or `-`

ClassAtomInRange ::
`-`
ClassAtomNoDashInRange

ClassAtomNoDashInRange ::
`\` ClassEscape
SourceCharacter but not one of `\` or `]` or `-`
SourceCharacter but not one of `]` or `-`

ClassEscape[U] ::
`b`
Expand Down

2 comments on commit 6ba35eb

@anba
Copy link
Contributor

@anba anba commented on 6ba35eb Feb 22, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems like I've forgot to update the uses when I've reverted the definitions after @goyakin's review in anba@b595f47#commitcomment-15628036

@bterlson
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't worry, it is encouraging to us mortals to see the mighty be sloppy sometimes ;)

Please sign in to comment.