class

DefinitionMap

@Js
class DefinitionMap : Obj

A map that can be used to store and lookup reference definitions by a label. The labels are case-insensitive and normalized, the same way as for LinkReferenceDefinition nodes.

constructors make

fields of

The type of definition stored in this map

methods addAll

get

putIfAbsent

Store a new definition unless one is already in the map

addAll Void addAll(DefinitionMap that)

get @Operator
Block? get(Str label, Block? def)

make new make(Type of)

of const Type : of

The type of definition stored in this map

putIfAbsent Block? putIfAbsent(Str label, Block def)

Store a new definition unless one is already in the map. If there is no definition for the label yet, return null. Otherwise return the existing definition

The label is normalized by the definition map before storing.

Haxall 4.0.5 ∙ 24-Feb-2026 14:33 EST