summaryrefslogtreecommitdiff
path: root/docs/type_system/op.md
blob: f5b935abbf6a88e15dfdd5c6d0d4dee0f2c7bbe0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Op

---

```text
Op[[OP_NAME] RETURN_TYPE; LEFT_TYPE; RIGHT_TYPE]
```

`OP_NAME` a single value

## Type Body Object Definitions

```c
typedef struct {
    kpl_type *return_type, *statement_left, *statement_right;
} kpl_type_body_op;