(items: Map<string, Value>)
| 77 | } |
| 78 | |
| 79 | export function dictionary(items: Map<string, Value>): DictionaryValue { |
| 80 | return { |
| 81 | type: 'dictionary', |
| 82 | items, |
| 83 | id: dictIdGen.next(), |
| 84 | }; |
| 85 | } |
| 86 | |
| 87 | export function funcref(args: { |
| 88 | name: string; |
no test coverage detected