Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions src/bindings/lib/bindings.c
Original file line number Diff line number Diff line change
Expand Up @@ -52,21 +52,21 @@ static void finalize_tree(value v) {
}

static struct custom_operations tree_custom_ops = {
identifier : "tree handling",
finalize : finalize_tree,
compare : custom_compare_default,
hash : custom_hash_default,
serialize : custom_serialize_default,
deserialize : custom_deserialize_default
.identifier : "tree handling",
.finalize : finalize_tree,
.compare : custom_compare_default,
.hash : custom_hash_default,
.serialize : custom_serialize_default,
.deserialize : custom_deserialize_default
};

static struct custom_operations TSNode_custom_ops = {
identifier : "TSNode handling",
finalize : custom_finalize_default,
compare : custom_compare_default,
hash : custom_hash_default,
serialize : custom_serialize_default,
deserialize : custom_deserialize_default
.identifier : "TSNode handling",
.finalize : custom_finalize_default,
.compare : custom_compare_default,
.hash : custom_hash_default,
.serialize : custom_serialize_default,
.deserialize : custom_deserialize_default
};

const char *octs_read(void *payload, uint32_t byte_offset, TSPoint position,
Expand Down