mirror of
https://github.com/Sei-Lisa/LSL-PyOptimizer
synced 2025-07-01 23:58:20 +00:00
Mark user functions as unstable.
Maybe in future we can perform further analysis to find some that are stable.
This commit is contained in:
parent
cdacc45bb0
commit
4d92cc8838
1 changed files with 2 additions and 1 deletions
|
@ -2474,7 +2474,8 @@ list lazy_list_set(list L, integer i, list v)
|
||||||
elif self.tok[0] == '}':
|
elif self.tok[0] == '}':
|
||||||
bracelevel -= 1
|
bracelevel -= 1
|
||||||
self.NextToken()
|
self.NextToken()
|
||||||
ret[name] = {'Kind':'f','Type':typ,'ParamTypes':params}
|
ret[name] = {'Kind':'f', 'Type':typ, 'ParamTypes':params,
|
||||||
|
'uns':True}
|
||||||
|
|
||||||
elif typ is None:
|
elif typ is None:
|
||||||
return ret # A variable needs a type
|
return ret # A variable needs a type
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue