mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 17:17:44 +00: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
Add a link
Reference in a new issue