Changes between Version 32 and Version 33 of ExplicitCallStack
- Timestamp:
- 01/30/07 04:18:54 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ExplicitCallStack
v32 v33 130 130 Declarations: 131 131 132 [[ x :: T ]] ==> x :: Trace -> T , if x is a function binding132 [[ x :: T ]] ==> x :: Trace -> T , x is function bound, and transformed for tracing 133 133 134 [[ x :: T ]] ==> x :: T , is x is a CAF binding134 [[ x :: T ]] ==> x :: T , x does not match the above rule 135 135 136 [[ x = \y1 .. yn -> E ]] ==> x = \t y1 .. yn -> [[ E ]]_("x":t) 136 [[ x = \y1 .. yn -> E ]] ==> x = \t y1 .. yn -> [[ E ]]_("x":t) , x is transformed for tracing 137 138 [[ x = \y1 .. yn -> E ]] ==> x = \y1 .. yn -> [[ E ]]_["x"] , x is not transformed for tracing 137 139 138 140 [[ x = E ]] ==> x = [[ E ]]_["x"] … … 142 144 Expressions: 143 145 144 [[ x ]]_t ==> x t , if fis function bound, and transformed for tracing146 [[ x ]]_t ==> x t , x is function bound, and transformed for tracing 145 147 146 [[ x ]]_t ==> x , ifx does not match the above rule148 [[ x ]]_t ==> x , x does not match the above rule 147 149 148 150 [[ k ]]_t ==> k
