github.com/arnodel/golua@v0.0.0-20230215163904-e0b5347eaaa1/runtime/quotas.yaml (about)

     1  # Runtime package features
     2  
     3  - name: The '..' builtin operator
     4    go:
     5      function: Concat
     6    lua:
     7      operator: 'x..y'
     8    compliance:
     9      - +memsafe
    10      - +cpusafe
    11      - +iosafe
    12    tests:
    13      description: check that string concatenation consumes memory resources
    14      file: lua/basic.quotas.lua
    15      compliance:
    16        - +memsafe
    17  
    18  - name: table insertion
    19    go:
    20      function: (*Table).Set
    21    lua:
    22      operator: 'x[y]=z'
    23    compliance:
    24      - +memsafe
    25      - +cpusafe
    26      - +iosafe
    27    tests:
    28      description: check that table insertion consumes memory resources
    29      file: lua/tables/quotas.lua
    30      compliance:
    31        - +memsafe