Dumper - Fixed imports
This commit is contained in:
parent
c3bdc23081
commit
141571569d
1 changed files with 4 additions and 1 deletions
|
@ -1,6 +1,9 @@
|
||||||
use std::fmt::Write;
|
use std::fmt::Write;
|
||||||
|
|
||||||
use crate::{ast::{BinaryExpr, ClassMemberDecl, ClassMemberKind, ExprNode, FunDecl, ProgramNode, PropertyAccessor, StmtNode}, tokens::Token};
|
use crate::{
|
||||||
|
ast::{BinaryExpr, ClassMemberDecl, ClassMemberKind, ExprNode, ProgramNode, StmtNode},
|
||||||
|
tokens::Token,
|
||||||
|
};
|
||||||
|
|
||||||
/* -------------------------------- *
|
/* -------------------------------- *
|
||||||
* Dumper trait and implementations *
|
* Dumper trait and implementations *
|
||||||
|
|
Loading…
Reference in a new issue