From 487b2a595ce3b5c054f7e26b642d8847027a76b2 Mon Sep 17 00:00:00 2001 From: Michael Ficarra Date: Tue, 23 Aug 2016 08:47:28 -0700 Subject: [PATCH] Rename spec.md to es5.md --- es2015.md | 4 ++-- spec.md => es5.md | 0 extensions/type-annotations.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename spec.md => es5.md (100%) diff --git a/es2015.md b/es2015.md index bad3988..74e1488 100644 --- a/es2015.md +++ b/es2015.md @@ -1,6 +1,6 @@ -This document specifies the extensions to the [core ESTree AST types](spec.md) to support the ES2015 grammar. +This document specifies the extensions to the [core ESTree AST types](es5.md) to support the ES2015 grammar. - [Programs](#programs) - [Functions](#functions) @@ -124,7 +124,7 @@ extend interface AssignmentExpression { } ``` -Note that pre-ES6 code was allowed [to pass references around](https://github.com/estree/estree/pull/20#issuecomment-74584758) and so `left` was much more liberal; an implementation might choose to continue using [old definition](https://github.com/estree/estree/blob/master/spec.md#assignmentexpression) if it needs to support such legacy code. +Note that pre-ES6 code was allowed [to pass references around](https://github.com/estree/estree/pull/20#issuecomment-74584758) and so `left` was much more liberal; an implementation might choose to continue using [old definition](https://github.com/estree/estree/blob/master/es5.md#assignmentexpression) if it needs to support such legacy code. ```js extend interface Property { diff --git a/spec.md b/es5.md similarity index 100% rename from spec.md rename to es5.md diff --git a/extensions/type-annotations.md b/extensions/type-annotations.md index a395d28..b1cf0aa 100644 --- a/extensions/type-annotations.md +++ b/extensions/type-annotations.md @@ -1,6 +1,6 @@ -This document specifies the extensions to the [core ESTree AST types](spec.md) to support type annotations. +This document specifies the extensions to the [core ESTree AST types](es5.md) to support type annotations. - [Type Annotations](#typeannotations) - [Identifier](#identifier)