JSSpecCompiler: Rename SpecFunction to SpecificationFunction

Over time, I converged on not abbreviating "specification". But this
class (and SpecParsingStep) predated the decision.
This commit is contained in:
Dan Klishch 2024-03-07 23:29:43 -05:00 committed by Andrew Kaster
commit 211d20d389
Notes: sideshowbarker 2024-07-17 02:55:44 +09:00
5 changed files with 7 additions and 7 deletions

View file

@ -25,7 +25,7 @@ NonnullOwnPtr<SpecificationClause> SpecificationClause::create(SpecificationPars
result = make<SpecificationClause>(move(specification_clause));
},
[&](OneOf<ClauseHeader::AbstractOperation, ClauseHeader::Accessor, ClauseHeader::Method> auto const&) {
result = make<SpecFunction>(move(specification_clause));
result = make<SpecificationFunction>(move(specification_clause));
});
if (!result->post_initialize(element))