-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathnumber.lua
More file actions
331 lines (259 loc) · 6.86 KB
/
Copy pathnumber.lua
File metadata and controls
331 lines (259 loc) · 6.86 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
--ANALYZE
local math = _G.math
local assert = _G.assert
local error = _G.error
local tostring = _G.tostring
local tonumber = _G.tonumber
local setmetatable = _G.setmetatable
local type = _G.type
local error_messages = require("nattlua.error_messages")
local bit = require("nattlua.other.bit")
local loadstring = require("nattlua.other.loadstring")
local string_to_integer = require("nattlua.other.integer")
local jit = _G.jit
local False = require("nattlua.types.symbol").False
local META = require("nattlua.types.base")()
--[[#local type TNumber = META.@Self]]
--[[#type TNumber.Type = "number"]]
--[[#local type TBaseType = TNumber]]
META.Type = "number"
META:GetSet("Data", false--[[# as number | false]])
META:GetSet("Hash", "")
META:IsSet("DontWiden", false)
local LNumberRange = require("nattlua.types" .. ".range"--[[# as any]]).LNumberRange--[[# as function=(TNumber, TNumber)>(TBaseType)]]
function META:SetData()
if false--[[# as true]] then return end
error("cannot mutate data")
end
--[[#local type TUnion = {
@Name = "TUnion",
Type = "union",
GetLargestNumber = function=(self)>(TNumber | nil, nil | any),
}]]
local VERSION--[[#: string]] = jit and "LUAJIT" or _VERSION
local function compute_hash(num--[[#: nil | number]])
if not num then return "N" end
local s = tostring(tonumber(num))
if VERSION == "LUAJIT" then return s end
if s == "-nan" then return "nan" end
if s:sub(-2) == ".0" then s = s:sub(1, -3) end
return s
end
function META.New(data--[[#: number | nil]])
return META.NewObject(
{
Type = META.Type,
Data = data or false,
TruthyFalsy = "truthy",
Upvalue = false,
Contract = false,
DontWiden = false,
Hash = compute_hash(data),
}
)
end
function META:GetLuaType()
if type(self.Data) == "cdata" then return "cdata" end
return self.Type
end
local function Number()
return META.New()
end
local function LNumber(num--[[#: number | nil]])
return META.New(num)
end
function META:GetHashForMutationTracking()
if self:IsNan() then return nil end
if self.Data then return self.Data end
local upvalue = self:GetUpvalue()
if upvalue then return upvalue:GetHashForMutationTracking() end
return self
end
function META.Equal(a--[[#: TNumber]], b--[[#: TBaseType]])
if a.Type ~= b.Type then return false, "types differ" end
return a.Hash == b.Hash, "hash values are equal"
end
function META:IsLiteral()
return self.Data ~= false
end
function META:Widen()
return Number()
end
function META:CopyLiteralness(obj--[[#: TNumber]])
local self = self:Copy()
if obj.Type == "range" then
else
if obj.Type == "union" then
local x = obj:GetType("range")
if x then return self end
end
if not obj:IsLiteral() then
self.Data = false
self.Hash = "N"
end
end
return self
end
function META:Copy()--[[#: TNumber]]
local copy = self.New(self.Data)
copy:CopyInternalsFrom(self)
return copy
end
function META.IsSubsetOf(a--[[#: TNumber]], b--[[#: TBaseType]])
if b.Type == "tuple" then b = b:GetWithNumber(1) end
if b.Type == "any" then return true end
if b.Type == "union" then return b:IsTargetSubsetOfChild(a) end
if b.Type == "range" then
if a.Data and a.Data >= b:GetMin() and a.Data <= b:GetMax() then
return true
end
return false, error_messages.subset(a, b)
end
if b.Type ~= "number" then return false, error_messages.subset(a, b) end
if a.Data and b.Data then
if a:IsNan() and b:IsNan() then return true end
if a.Data == b.Data then return true end
return false, error_messages.subset(a, b)
elseif a.Data == false and b.Data == false then
-- number contains number
return true
elseif a.Data and not b.Data then
-- 42 subset of number?
return true
elseif not a.Data and b.Data then
-- number subset of 42 ?
return false, error_messages.subset(a, b)
end
-- number == number
return true
end
function META:IsNan()--[[#: boolean]]
return self.Data ~= self.Data
end
function META:IsInf()--[[#: boolean]]
return self.Data and math.abs(self.Data) == math.huge
end
function META:__tostring()--[[#: string]]
local n = self.Data
if self:IsNan() then return "nan" end
if self.Data then return tostring(self.Data) end
return "number"
end
function META:UnpackRange()
return self.Data, self.Data
end
do
local inf = math.huge
local operators--[[#: {[string] = function=(number, number)>(number)}]] = {
["+"] = function(l, r)
return l + r
end,
["-"] = function(l, r)
return l - r
end,
["*"] = function(l, r)
return l * r
end,
["/"] = function(l, r)
return l / r
end,
["/idiv/"] = function(l, r)
return (math.modf(l / r))
end,
["%"] = function(l, r)
return l % r
end,
["^"] = function(l, r)
return l ^ r
end,
["&"] = function(l, r)
return bit.band(l, r)
end,
["|"] = function(l, r)
return bit.bor(l, r)
end,
["~"] = function(l, r)
return bit.bxor(l, r)
end,
["<<"] = function(l, r)
return bit.lshift(l, r)
end,
[">>"] = function(l, r)
return bit.rshift(l, r)
end,
}
for k, v in pairs(operators) do
operators[k] = function(l, r)
if l == inf or r == inf then return inf end
return v(l, r)
end
end
function META.BinaryOperator(l--[[#: TNumber]], r--[[#: TBaseType]], op--[[#: keysof<|operators|>]])
local func = operators[op]
if not func then return nil, error_messages.binary(op, l, r) end
if l.Data == false then return Number() end
r = r--[[# as TBaseType]] --?
if r.Type == "range" then
local l_min = l.Data
local l_max = l.Data
local r_min = r:GetMin()
local r_max = r:GetMax()
return LNumberRange(func(l_min, r_min), func(l_max, r_max))
end
if r.Data == false then return Number() end
return LNumber(func(assert(l.Data), assert(r.Data)))
end
end
do
local operators--[[#: {[string] = function=(number)>(number)}]] = {
["-"] = function(x)
return -x
end,
["~"] = function(x)
return bit.bnot(x)
end,
}
if bit == _G.bit32 then
operators["~"] = function(x)
local result = bit32.bnot(x)
if result > 0x7FFFFFFF then return result - 0x100000000 end
return result
end
end
function META.PrefixOperator(x--[[#: TNumber]], op--[[#: keysof<|operators|>]])
local func = operators[op]
if op == "not" then return False() end
if not x.Data then return Number() end
local res = func(x.Data)
local lcontract = x:GetContract()
if lcontract then
local min = lcontract.Data
if min and min > res then
return false, error_messages.number_underflow(x)
end
end
return LNumber(res)
end
end
function META:IsNumeric()
return true
end
return {
Number = Number,
LNumber = LNumber,
LNumberFromString = function(str--[[#: string]])
local num
if str:sub(1, 2) == "0b" then
num = tonumber(str:sub(3), 2)
elseif str:lower():sub(-3) == "ull" then
num = string_to_integer(str)
elseif str:lower():sub(-2) == "ll" then
num = string_to_integer(str)
else
num = tonumber(str)
end
if not num then return nil end
return LNumber(num)
end,
TNumber = TNumber,
}