@@ -40,29 +40,29 @@ pub fn dispatch_0(option: i32, __args: &[VaArg]) -> i32 {
4040 ' switch: {
4141 let __match_cond = ( * option. borrow ( ) ) ;
4242 match __match_cond {
43- v if v == ( opt:: OPT_STRING_OUT as i32 ) => {
43+ __v if __v == ( opt:: OPT_STRING_OUT as i32 ) => {
4444 let out: Value < Ptr < Ptr < u8 > > > = Rc :: new ( RefCell :: new (
4545 ( ( * ap. borrow_mut ( ) ) . arg :: < Ptr < Ptr < u8 > > > ( ) ) . clone ( ) ,
4646 ) ) ;
47- ( * out. borrow ( ) ) . write ( Ptr :: from_string_literal ( "hello" ) ) ;
47+ ( * out. borrow ( ) ) . write ( Ptr :: from_string_literal ( b "hello") ) ;
4848 ( * result. borrow_mut ( ) ) = 1 ;
4949 break ' switch;
5050 }
51- v if v == ( opt:: OPT_FILE as i32 ) => {
51+ __v if __v == ( opt:: OPT_FILE as i32 ) => {
5252 let f: Value < Ptr < :: std:: fs:: File > > = Rc :: new ( RefCell :: new (
5353 ( ( * ap. borrow_mut ( ) ) . arg :: < Ptr < :: std:: fs:: File > > ( ) ) . clone ( ) ,
5454 ) ) ;
5555 ( * result. borrow_mut ( ) ) = ( ( !( ( * f. borrow ( ) ) . is_null ( ) ) ) as i32 ) . clone ( ) ;
5656 break ' switch;
5757 }
58- v if v == ( opt:: OPT_NODE as i32 ) => {
58+ __v if __v == ( opt:: OPT_NODE as i32 ) => {
5959 let n: Value < Ptr < node > > = Rc :: new ( RefCell :: new (
6060 ( ( * ap. borrow_mut ( ) ) . arg :: < Ptr < node > > ( ) ) . clone ( ) ,
6161 ) ) ;
6262 ( * result. borrow_mut ( ) ) = ( * ( * ( * n. borrow ( ) ) . upgrade ( ) . deref ( ) ) . data . borrow ( ) ) ;
6363 break ' switch;
6464 }
65- v if v == ( opt:: OPT_NODE_OUT as i32 ) => {
65+ __v if __v == ( opt:: OPT_NODE_OUT as i32 ) => {
6666 let out: Value < Ptr < Ptr < node > > > = Rc :: new ( RefCell :: new (
6767 ( ( * ap. borrow_mut ( ) ) . arg :: < Ptr < Ptr < node > > > ( ) ) . clone ( ) ,
6868 ) ) ;
0 commit comments