mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 18:32:28 -05:00
LibJS: Remove superfluous explicit in AST.h (#1395)
This commit is contained in:
parent
28731179b1
commit
11aac6fdce
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ private:
|
|||
|
||||
class IfStatement : public ASTNode {
|
||||
public:
|
||||
explicit IfStatement(NonnullOwnPtr<Expression> predicate, NonnullOwnPtr<ScopeNode> consequent, NonnullOwnPtr<ScopeNode> alternate)
|
||||
IfStatement(NonnullOwnPtr<Expression> predicate, NonnullOwnPtr<ScopeNode> consequent, NonnullOwnPtr<ScopeNode> alternate)
|
||||
: m_predicate(move(predicate))
|
||||
, m_consequent(move(consequent))
|
||||
, m_alternate(move(alternate))
|
||||
|
|
Loading…
Add table
Reference in a new issue