mirror of
https://github.com/Sei-Lisa/LSL-PyOptimizer
synced 2025-07-03 00:18:20 +00:00
Add TODOs
This commit is contained in:
parent
c2a30fb9ee
commit
e89869a563
1 changed files with 5 additions and 0 deletions
|
@ -798,6 +798,8 @@ class parser(object):
|
||||||
|
|
||||||
if tok0 == '(':
|
if tok0 == '(':
|
||||||
# Parenthesized expression or typecast
|
# Parenthesized expression or typecast
|
||||||
|
# TODO: Don't include parentheses in the tree, defer to the output
|
||||||
|
# module to add them where necessary.
|
||||||
|
|
||||||
self.NextToken()
|
self.NextToken()
|
||||||
if self.tok[0] != 'TYPE':
|
if self.tok[0] != 'TYPE':
|
||||||
|
@ -1828,6 +1830,9 @@ class parser(object):
|
||||||
# TODO: Enable brackets for list elements e.g. (float)mylist[3], or mylist[5]=4
|
# TODO: Enable brackets for list elements e.g. (float)mylist[3], or mylist[5]=4
|
||||||
#self.lazylists = 'lazylists' in options
|
#self.lazylists = 'lazylists' in options
|
||||||
|
|
||||||
|
# TODO: Enable break/continue
|
||||||
|
#self.breakcont = 'breakcont' in options
|
||||||
|
|
||||||
# Enable use of local labels with duplicate names
|
# Enable use of local labels with duplicate names
|
||||||
self.duplabels = 'duplabels' in options
|
self.duplabels = 'duplabels' in options
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue