Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove old spec macro - Web/JavaScript (ja) #10095

Merged
merged 1 commit into from
Nov 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -167,9 +167,7 @@ console.log(newInstance.name); //Polygon

## 仕様書

| 仕様書 |
| -------------------------------------------------------------------------------------------------------------------- |
| {{SpecName('ESDraft', '#sec-static-semantics-constructormethod', 'Constructor Method')}} |
{{Specifications}}

## ブラウザーの互換性

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,7 @@ class myDate extends Date {

## 仕様書

| 仕様書 |
| -------------------------------------------------------------------------------- |
| {{SpecName('ESDraft', '#sec-class-definitions', 'extends')}} |
{{Specifications}}

## ブラウザーの互換性

Expand Down
4 changes: 1 addition & 3 deletions files/ja/web/javascript/reference/classes/static/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,7 @@ class StaticMethodCall {

## 仕様書

| 仕様書 |
| -------------------------------------------------------------------------------------------- |
| {{SpecName('ESDraft', '#sec-class-definitions', 'Class definitions')}} |
{{Specifications}}

## ブラウザーの互換性

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,7 @@ new URL(import.meta.url).searchParams.get('someURLInfo'); // 5

## 仕様

| 仕様書 |
| ------------------------------------------------------------------------------------------------------------------------ |
| [`import.meta`](https://tc39.es/proposal-import-meta/#prod-ImportMeta) proposal |
| {{SpecName("HTML WHATWG", "webappapis.html#hostgetimportmetaproperties", "import.meta")}} |
{{Specifications}}

## ブラウザー実装状況

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,7 @@ x = document.forms['form_name'].elements[strFormControl].value

## 仕様書

| 仕様書 |
| ------------------------------------------------------------------------------------------------ |
| {{SpecName('ESDraft', '#sec-property-accessors', 'Property Accessors')}} |
{{Specifications}}

## ブラウザーの互換性

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,7 @@ console.log(c); // 1 が出力され、SyntaxError は発生しない...

## 仕様

| 仕様書 |
| ---------------------------------------------------------------------------- |
| {{SpecName('ESDraft', '#sec-block', 'Block statement')}} |
{{Specifications}}

## ブラウザーの互換性

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,7 @@ block_1: {

## 仕様書

| 仕様書 |
| ---------------------------------------------------------------------------------------- |
| {{SpecName('ESDraft', '#sec-break-statement', 'Break statement')}} |
{{Specifications}}

## ブラウザーの互換性

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,7 @@ class Foo {}; // Uncaught SyntaxError: Identifier 'Foo' has already been declare

## 仕様書

| 仕様書 |
| -------------------------------------------------------------------------------------------- |
| {{SpecName('ESDraft', '#sec-class-definitions', 'Class definitions')}} |
{{Specifications}}

## ブラウザーの互換性

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,7 @@ j = 4

## 仕様書

| 仕様書 |
| ------------------------------------------------------------------------------------------------ |
| {{SpecName('ESDraft', '#sec-continue-statement', 'Continue statement')}} |
{{Specifications}}

## ブラウザーの互換性

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,7 @@ function potentiallyBuggyCode() {

## 仕様書

| 仕様書 |
| ------------------------------------------------------------------------------------------------ |
| {{SpecName('ESDraft', '#sec-debugger-statement', 'Debugger statement')}} |
{{Specifications}}

## ブラウザーの互換性

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,7 @@ console.log(result);

## 仕様書

| Specification |
| ------------------------------------------------------------------------------------------------ |
| {{SpecName('ESDraft', '#sec-do-while-statement', 'do-while statement')}} |
{{Specifications}}

## ブラウザーの互換性

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,7 @@ else

## 仕様書

| 仕様書 |
| ---------------------------------------------------------------------------------------- |
| {{SpecName('ESDraft', '#sec-empty-statement', 'Empty statement')}} |
{{Specifications}}

## ブラウザーの互換性

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -244,9 +244,7 @@ import { myFunction, myVariable, myClass } from 'parentModule.js'

## 仕様

| 仕様書 |
| -------------------------------------------------------------------- |
| {{SpecName('ESDraft', '#sec-exports', 'Exports')}} |
{{Specifications}}

## ブラウザーの互換性

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -219,9 +219,7 @@ try {

## 仕様書

| 仕様書 |
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| {{SpecName('ESDraft', '#sec-for-in-and-for-of-statements', 'ECMAScript Language: The for-in, for-of, and for-await-of Statements')}} |
{{Specifications}}

## ブラウザーの互換性

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,7 @@ for (const prop in obj) {

## 仕様書

| 仕様書 |
| ------------------------------------------------------------------------------------------------------------ |
| {{SpecName('ESDraft', '#sec-for-in-and-for-of-statements', 'for...in statement')}} |
{{Specifications}}

## ブラウザーの互換性

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -298,9 +298,7 @@ for (const i of iterable) {

## 仕様

| 仕様書 |
| ------------------------------------------------------------------------------------------------------------ |
| {{SpecName('ESDraft', '#sec-for-in-and-for-of-statements', 'for...of statement')}} |
{{Specifications}}

## ブラウザーの互換性

Expand Down
4 changes: 1 addition & 3 deletions files/ja/web/javascript/reference/statements/for/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,7 @@ showOffsetPos('content');

## 仕様書

| 仕様書 |
| ------------------------------------------------------------------------------------ |
| {{SpecName('ESDraft', '#sec-for-statement', 'for statement')}} |
{{Specifications}}

## ブラウザーの互換性

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,7 @@ function calc_sales(units_a, units_b, units_c) {

## 仕様書

| 仕様書 |
| ---------------------------------------------------------------------------------------------------- |
| {{SpecName('ESDraft', '#sec-function-definitions', 'Function definitions')}} |
{{Specifications}}

## ブラウザーの互換性

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -217,9 +217,7 @@ for(let power of powers(2)){

## 仕様書

| 仕様書 |
| ---------------------------------------------------------------------------------------------------- |
| {{SpecName('ESDraft', '#sec-generator-function-definitions', 'function*')}} |
{{Specifications}}

## ブラウザーの互換性

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,7 @@ if ((x = y)) {

## 仕様書

| 仕様書 |
| -------------------------------------------------------------------------------- |
| {{SpecName('ESDraft', '#sec-if-statement', 'if statement')}} |
{{Specifications}}

## ブラウザーの互換性

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -228,10 +228,7 @@ for (const link of document.querySelectorAll("nav > a")) {

## 仕様

| 仕様書 |
| -------------------------------------------------------------------------------- |
| {{SpecName("ESDraft", "#sec-imports", "Imports")}} |
| {{SpecName("ESDraft", "#sec-import-calls", "Import Calls")}} |
{{Specifications}}

## ブラウザー実装状況

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,9 +166,7 @@ L: function* F() {}

## 仕様書

| 仕様書 |
| ------------------------------------------------------------------------------------------------ |
| {{SpecName('ESDraft', '#sec-labelled-statements', 'Labelled statement')}} |
{{Specifications}}

## ブラウザーの互換性

Expand Down
4 changes: 1 addition & 3 deletions files/ja/web/javascript/reference/statements/let/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -253,9 +253,7 @@ let x = 1;

## 仕様

| 仕様 |
| -------------------------------------------------------------------------------------------------------------------- |
| {{SpecName('ESDraft', '#sec-let-and-const-declarations', 'Let and Const Declarations')}} |
{{Specifications}}

## ブラウザーの互換性

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -258,9 +258,7 @@ switch (action) {

## 仕様書

| 仕様書 |
| -------------------------------------------------------------------------------------------- |
| {{SpecName('ESDraft', '#sec-switch-statement', 'switch statement')}} |
{{Specifications}}

## ブラウザーの互換性

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,7 @@ try {

## 仕様書

| 仕様書 |
| ---------------------------------------------------------------------------------------- |
| {{SpecName('ESDraft', '#sec-throw-statement', 'throw statement')}} |
{{Specifications}}

## ブラウザーの互換性

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,7 @@ while (n < 3) {

## 仕様書

| 仕様書 |
| ---------------------------------------------------------------------------------------- |
| {{SpecName('ESDraft', '#sec-while-statement', 'while statement')}} |
{{Specifications}}

## ブラウザーの互換性

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,7 @@ with (Math) {

## 仕様書

| 仕様書 |
| ------------------------------------------------------------------------------------ |
| {{SpecName('ESDraft', '#sec-with-statement', 'with statement')}} |
{{Specifications}}

## ブラウザーの互換性

Expand Down