-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathluajit_2.1.yaml
51 lines (50 loc) · 2.49 KB
/
luajit_2.1.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
rules:
- id: "luajit_2.1"
metadata:
author: Sergey Bronnikov <estetus@gmail.com>
description: Function is compiled starting with LuaJIT 2.1.
references:
- https://github.com/tarantool/tarantool/wiki/LuaJIT-Not-Yet-Implemented
- http://web.archive.org/web/20220717120825/http://wiki.luajit.org/NYI
pattern-either:
- pattern: collectgarbage() # 2.1 stitch
- pattern: gcinfo() # 2.1 stitch
- pattern: newproxy() # 2.1 stitch
- pattern: require(...) # 2.1 stitch
- pattern: setfenv(...) # 2.1 stitch
- pattern: unpack(...) # 2.1 stitch
- pattern: string.char(...) # 2.1
- pattern: string.gmatch(...) # 2.1 stitch
- pattern: string.gsub(...) # 2.1 stitch
- pattern: string.lower(...) # 2.1
- pattern: string.match(...) # 2.1 stitch
- pattern: string.rep(...) # 2.1
- pattern: string.reverse(...) # 2.1
- pattern: string.upper(...) # 2.1
- pattern: table.concat(...) # 2.1
- pattern: table.foreachi(...) # 2.1 bytecode
- pattern: table.maxn(...) # 2.1 stitch
- pattern: table.pack(...) # 2.1 stitch
- pattern: table.remove(...) # 2.1 bytecode
- pattern: table.sort(...) # 2.1 stitch
- pattern: table.unpack(...) # 2.1 stitch
- pattern: math.fmod(...) # 2.1 stitch
- pattern: math.frexp(...) # 2.1 stitch
- pattern: math.randomseed(...) # 2.1 stitch
- pattern: io.close(...) # 2.1 stitch
- pattern: io.input(...) # 2.1 stitch
- pattern: io.lines(...) # 2.1 stitch
- pattern: io.open(...) # 2.1 stitch
- pattern: io.output(...) # 2.1 stitch
- pattern: io.popen(...) # 2.1 stitch
- pattern: io.read(...) # 2.1 stitch
- pattern: io.tmpfile() # 2.1 stitch
- pattern: io.type(...) # 2.1 stitch
- pattern: bit.tohex(...) # 2.1
- pattern: ffi.gc(...) # 2.1
message: |
All aspects of Lua are implemented in LuaJIT's interpreter, but not all of
them are implemented in LuaJIT's JIT compiler.
This function is compiled starting with LuaJIT 2.1.
languages: [lua]
severity: INFO