Edit

kc3-lang/kc3/test/ikc3/access.out.expected

Branch :

  • test/ikc3/access.out.expected
  • %{a: (U8) 1, b: (U8) 2, c: (U8) 3}.a
    (U8) 1
    %{a: (U8) 1, b: (U8) 2, c: (U8) 3}.b
    (U8) 2
    %{a: (U8) 1, b: (U8) 2, c: (U8) 3}.c
    (U8) 3
    %{a: %{b: %{c: (U8) 1}}}.a
    %{b: %{c: (U8) 1}}
    %{a: %{b: %{c: (U8) 1}}}.a.b
    %{c: (U8) 1}
    %{a: %{b: %{c: (U8) 1}}}.a.b.c
    (U8) 1
    map = %{a: %{b: %{c: (U8) 1}}}
    %{a: %{b: %{c: (U8) 1}}}
    map
    %{a: %{b: %{c: (U8) 1}}}
    map.a
    %{b: %{c: (U8) 1}}
    map.a.b
    %{c: (U8) 1}
    map.a.b.c
    (U8) 1
    map.a.b.c + map.a.b.c
    (U8) 2
    "0 #{map.a.b.c} 2"
    "0 1 2"
    op = %KC3.Operator{}
    %KC3.Operator{sym: :+, symbol_value: ?, operator_precedence: (U8) 0, operator_associativity: :left}
    op.sym
    :+