built-ins/Symbol/*: make all indentation consistent (depth & character) (#1425)

This commit is contained in:
Rick Waldron 2018-02-15 15:41:33 -05:00 committed by Leo Balter
parent bc70e0339f
commit f574680595
4 changed files with 12 additions and 15 deletions

View File

@ -20,4 +20,3 @@ assert.sameValue(getGetterName(Map, Symbol.species), "get [Symbol.species]");
assert.sameValue(getGetterName(Promise, Symbol.species), "get [Symbol.species]");
assert.sameValue(getGetterName(RegExp, Symbol.species), "get [Symbol.species]");
assert.sameValue(getGetterName(Set, Symbol.species), "get [Symbol.species]");

View File

@ -9,8 +9,6 @@ description: Symbol.species is retained on subclassing
features: [Symbol.species]
---*/
class MyRegExp extends RegExp {
};
class MyRegExp extends RegExp {};
assert.sameValue(MyRegExp[Symbol.species], MyRegExp);