@@ -119,17 +119,17 @@ pub struct Ctx<'a> {
119119/// highlight is generated only if the number is 0 
120120pub  need_highlight :  Arc < RefCell < usize > > , 
121121
122-     /// LLVM argument:  the index to mark a function element inside  builder 
122+     /// the index to mark a lower level code generation of  function element from the  builder 
123123pub  function :  Option < ValueHandle > , 
124-     /// LLVM argument:  the init function called first in main 
124+     /// the init function called first in main 
125125pub  init_func :  Option < ValueHandle > , 
126-     /// LLVM argument:  current block 
126+     /// current block 
127127pub  block :  Option < BlockHandle > , 
128-     /// LLVM argument:  the block to jump when continue if it's a loop statement 
128+     /// the block to jump when continue if it's a loop statement 
129129pub  continue_block :  Option < BlockHandle > , 
130-     /// LLVM argument:  the block to jump to when break if it's a loop statement 
130+     /// the block to jump to when break if it's a loop statement 
131131pub  break_block :  Option < BlockHandle > , 
132-     /// LLVM argument:  the block to jump to when return and value 
132+     /// the block to jump to when return and value 
133133pub  return_block :  Option < ( BlockHandle ,  Option < ValueHandle > ) > , 
134134
135135    /// diagnose tries to hold all warning and as many as possible errors 
0 commit comments