• A
    proc: Implements expression interpreter · 43b64ec3
    aarzilli 提交于
    Supported operators:
    
    - All (binary and unary) operators between basic types except <-,
    ++ and -- (includes & to take the address of an expression)
    - Comparison operators between supported compound types
    - Typecast of integer constants into pointer types
    - struct members
    - indexing of arrays, slices and strings
    - slicing of arrays, slices and strings
    - pointer dereferencing
    - true, false and nil constants
    
    Implements #116, #117 and #251
    43b64ec3
variables_test.go 20.7 KB