Sfoglia il codice sorgente

zkas/parser: Remove outdated comment.

parazyd 4 anni fa
parent
commit
3b1b0de2e9
1 ha cambiato i file con 0 aggiunte e 5 eliminazioni
  1. 0 5
      zkas/src/parser.rs

+ 0 - 5
zkas/src/parser.rs

@@ -428,11 +428,6 @@ impl Parser {
     }
 
     fn parse_ast_circuit(&self, statements: Vec<Vec<Token>>) -> Vec<Statement> {
-        // 1. Scan the tokens to map opcodes (function calls)
-        // 2. For each statement, see if there are variable assignments
-        // 3. When referencing, check if they're in Constants, Witnesses
-        //    and finally, or they've been assigned
-
         let mut stmts = vec![];
 
         for statement in statements {