Adds statements directory, moves for statement

This commit is contained in:
howardwu 2020-06-07 00:49:29 -07:00
parent 47bcb069ba
commit ad0a9c5381
6 changed files with 11 additions and 5 deletions

View File

@ -5,11 +5,13 @@ use crate::{
BinaryOperation,
NotOperation,
},
statements::{
ForStatement
},
types::{
ArrayType,
CircuitType,
DataType,
ForStatement,
GroupType,
Identifier,
SelfType,

View File

@ -14,6 +14,9 @@ pub use errors::*;
pub mod operations;
pub use operations::*;
pub mod statements;
pub use statements::*;
pub mod values;
pub use values::*;

View File

@ -0,0 +1,2 @@
pub mod for_statement;
pub use for_statement::*;

View File

@ -16,9 +16,6 @@ pub use field_type::*;
pub mod group_type;
pub use group_type::*;
pub mod for_statement;
pub use for_statement::*;
pub mod identifier;
pub use identifier::*;

View File

@ -7,11 +7,13 @@ use leo_ast::{
AssignOperation,
BinaryOperation,
},
statements::{
ForStatement,
},
types::{
ArrayType,
CircuitType,
DataType,
ForStatement,
Identifier,
IntegerType,
Visibility,