Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
trs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Taddeüs Kroes
trs
Commits
b9aea94e
Commit
b9aea94e
authored
Feb 24, 2012
by
Taddeus Kroes
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'function' of kompiler.org:trs into function
parents
8c9a6c6e
1752a601
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
47 additions
and
2 deletions
+47
-2
src/node.py
src/node.py
+2
-0
src/parser.py
src/parser.py
+45
-2
No files found.
src/node.py
View file @
b9aea94e
...
@@ -98,6 +98,8 @@ TOKEN_MAP = {
...
@@ -98,6 +98,8 @@ TOKEN_MAP = {
OP_REWRITE
:
'REWRITE'
,
OP_REWRITE
:
'REWRITE'
,
}
}
FUNCTIONS
=
[
OP_SQRT
,
OP_SIN
,
OP_COS
,
OP_TAN
,
OP_INT
,
OP_SOLVE
]
def
to_expression
(
obj
):
def
to_expression
(
obj
):
return
obj
if
isinstance
(
obj
,
ExpressionBase
)
else
ExpressionLeaf
(
obj
)
return
obj
if
isinstance
(
obj
,
ExpressionBase
)
else
ExpressionLeaf
(
obj
)
...
...
src/parser.py
View file @
b9aea94e
...
@@ -314,6 +314,7 @@ class Parser(BisonParser):
...
@@ -314,6 +314,7 @@ class Parser(BisonParser):
"""
"""
exp : NUMBER
exp : NUMBER
| IDENTIFIER
| IDENTIFIER
| function
| LPAREN exp RPAREN
| LPAREN exp RPAREN
| unary
| unary
| binary
| binary
...
@@ -329,10 +330,13 @@ class Parser(BisonParser):
...
@@ -329,10 +330,13 @@ class Parser(BisonParser):
if
option
==
1
:
# rule: IDENTIFIER
if
option
==
1
:
# rule: IDENTIFIER
return
Leaf
(
values
[
0
])
return
Leaf
(
values
[
0
])
if
option
==
2
:
# rule: LPAREN exp RPAREN
if
option
==
2
:
# rule: function
return
values
[
0
]
if
option
==
3
:
# rule: LPAREN exp RPAREN
return
values
[
1
]
return
values
[
1
]
if
option
in
[
3
,
4
,
5
]:
# rule: unary | binary | nary
if
option
in
[
4
,
5
,
6
]:
# rule: unary | binary | nary
return
values
[
0
]
return
values
[
0
]
raise
BisonSyntaxError
(
'Unsupported option %d in target "%s".'
raise
BisonSyntaxError
(
'Unsupported option %d in target "%s".'
...
@@ -405,6 +409,45 @@ class Parser(BisonParser):
...
@@ -405,6 +409,45 @@ class Parser(BisonParser):
raise
BisonSyntaxError
(
'Unsupported option %d in target "%s".'
raise
BisonSyntaxError
(
'Unsupported option %d in target "%s".'
%
(
option
,
target
))
# pragma: nocover
%
(
option
,
target
))
# pragma: nocover
def
on_function
(
self
,
target
,
option
,
names
,
values
):
"""
function : function_name LPAREN arglist RPAREN
"""
if
option
==
0
:
# rule: function_name LPAREN arglist RPAREN
print
'FUNCTION:'
,
values
[
0
],
values
[
2
]
return
Node
(
values
[
0
],
*
values
[
2
])
raise
BisonSyntaxError
(
'Unsupported option %d in target "%s".'
%
(
option
,
target
))
# pragma: nocover
def
on_function_name
(
self
,
target
,
option
,
names
,
values
):
"""
function_name : SQRT | SIN | COS | TAN | INT | SOLVE
"""
if
0
<=
option
<=
5
:
# rule: SQRT | SIN | COS | TAN | INT | SOLVE
return
values
[
0
]
#return TOKEN_OP_MAP[values[0]]
raise
BisonSyntaxError
(
'Unsupported option %d in target "%s".'
%
(
option
,
target
))
# pragma: nocover
def
on_arglist
(
self
,
target
,
option
,
names
,
values
):
"""
arglist : arglist COMMA exp
| exp
"""
if
option
==
0
:
# rule: arglist COMMA exp
return
values
[
0
]
+
[
values
[
2
]]
if
option
==
1
:
# rule: exp
return
[
values
[
0
]]
raise
BisonSyntaxError
(
'Unsupported option %d in target "%s".'
%
(
option
,
target
))
# pragma: nocover
# -----------------------------------------
# -----------------------------------------
# operator tokens
# operator tokens
# -----------------------------------------
# -----------------------------------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment