Skip to content

Commit 5b5616b

Browse files
Maarten Staaczosel
authored andcommitted
Prettier formatting.
1 parent d94488d commit 5b5616b

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

src/ast/enumcase.js

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,13 @@ const KIND = "enumcase";
1616
* @property {string} name
1717
* @property {string|number|null} value
1818
*/
19-
module.exports = Node.extends(
20-
KIND,
21-
function EnumCase(name, value, docs, location) {
22-
Node.apply(this, [KIND, docs, location]);
23-
this.name = name;
24-
this.value = value;
25-
}
26-
);
19+
module.exports = Node.extends(KIND, function EnumCase(
20+
name,
21+
value,
22+
docs,
23+
location
24+
) {
25+
Node.apply(this, [KIND, docs, location]);
26+
this.name = name;
27+
this.value = value;
28+
});

0 commit comments

Comments
 (0)