Skip to content

Commit

Permalink
change data attribute specification to has_specification
Browse files Browse the repository at this point in the history
  • Loading branch information
codehag committed Mar 13, 2019
1 parent 5f52c62 commit 91a01df
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions _data/stage3.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
- title: globalThis
id: proposal-global
specification: true
has_specification: true
description: ECMAScript Proposal, specs, and reference implementation for globalThis
authors:
- Jordan Harband
Expand All @@ -14,7 +14,7 @@

- title: import()
id: proposal-dynamic-import
specification: true
has_specification: true
description: Adding a "function-like" import() module loading syntactic form to JavaScript
authors:
- Domenic Denicola
Expand Down Expand Up @@ -44,7 +44,7 @@

- title: Legacy RegExp features in JavaScript
id: proposal-regexp-legacy-features
specification: false
has_specification: false
description: This is a specification draft for the legacy (deprecated) RegExp features in JavaScript, i.e., static properties of the constructor like RegExp.$1 as well as the RegExp.prototype.compile method.
authors:
- Claude Pache
Expand All @@ -59,7 +59,7 @@

- title: BigInt
id: proposal-bigint
specification: true
has_specification: true
description: Arbitrary precision integers in JavaScript
authors:
- Daniel Ehrenberg
Expand All @@ -81,7 +81,7 @@

- title: import.meta
id: proposal-import-meta
specification: true
has_specification: true
description: A proposal for adding an import.meta metaproperty to JavaScript, for holding host-specific metadata about the current module.
authors:
- Domenic Denicola
Expand All @@ -95,7 +95,7 @@

- title: Private instance methods and accessors
id: proposal-private-methods
specification: true
has_specification: true
description: Keeping state and behavior private to a class lets library authors present a clear, stable interface, while changing their code over time behind the scenes.
authors:
- Daniel Ehrenberg
Expand Down Expand Up @@ -136,7 +136,7 @@
- title: Class Public Instance Fields & Private Instance Fields
id: proposal-class-fields
specification: true
has_specification: true
description: This proposes a combined vision for public fields and private fields, drawing on the earlier Orthogonal Classes and Class Evaluation Order proposals.
authors:
- Daniel Ehrenberg
Expand All @@ -163,7 +163,7 @@

- title: Static class fields and private static methods
id: proposal-static-class-features
specification: true
has_specification: true
description: This proposal adds Static public fields, Static private methods and Static private fields
authors:
- Daniel Ehrenberg
Expand Down Expand Up @@ -209,7 +209,7 @@
- title: String.prototype.matchAll
id: proposal-string-matchall
specification: true
has_specification: true
description: If given a string, and either a sticky or a global regular expression which has multiple capturing groups, we often want to iterate through all of the matches.
authors:
- Jordan Harband
Expand Down Expand Up @@ -247,7 +247,7 @@

- title: Hashbang Grammar
id: proposal-hashbang
specification: true
has_specification: true
description: This proposal is to match de-facto usage in some CLI JS hosts that allow for Shebangs / Hashbang. Such hosts strip the hashbang in order to generate valid JS source texts before passing to JS engines currently. This would unify and standardize how that is done..
authors:
- Bradley Farias
Expand Down
2 changes: 1 addition & 1 deletion _includes/proposals.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ <h4 class="featurelist__item__title flex-grow">
</li>
{% endfor %}
{% endif %}
{% if proposal.specification %}
{% if proposal.has_specification %}
<li class="featurelist__item__spec">
<a href="https://tc39.github.io/{{ proposal.id }}">Specification</a>
</li>
Expand Down

0 comments on commit 91a01df

Please sign in to comment.