michal-kapala/jitterbit-script

`dictionary` type

Closed this issue · 1 comments

Dictionary objects equivalent to TS maps are a separate type.

Dependency on:

Implementation

Operators

  • assignments
  • unary operators
  • binary operators
  • member access
    • LHS (write)
    • RHS (read)

Cross-type interactions

  • number
  • bool
  • string
  • null
  • array
  • dictionary
  • binary
  • date

Functions

Required for release:

Side effects

Dictionaries returned from scripts are implicitly converted to a string representation, e.g.

<trans>
a = Dict();
a["key1"] = "content";
a["key2"] = "more content";
a
</trans>

will return a representation of:

"[key1=>\"content\",key2=>\"more content\"]"

Currently there is no deserialization available for this format.

Closed by cda67a6