Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
OpenGEODE
Commits
9c203d77
Commit
9c203d77
authored
Oct 16, 2014
by
Maxime Perrotin
Browse files
Removed old comments
parent
bd4c6cff
Changes
1
Hide whitespace changes
Inline
Side-by-side
Renderer.py
View file @
9c203d77
...
...
@@ -74,23 +74,6 @@ def _block(ast, scene):
@
render
.
register
(
ogAST
.
Process
)
def
_process
(
ast
,
scene
,
**
_
):
''' Render a Process symbol (in a BLOCK diagram) '''
# Set autocompletion lists for input, output, state, types, variables:
# try:
# sdlSymbols.TextSymbol.completion_list = {
# t.replace('-', '_') for t in ast.dataview}
# except (AttributeError, TypeError):
# LOG.debug('No dataview for filling types autocompletion list')
# sdlSymbols.State.completion_list = {
# state for state in ast.mapping if state != 'START'}
# sdlSymbols.Input.completion_list = {
# signal['name'] for signal in ast.input_signals}
# sdlSymbols.Output.completion_list = {
# signal['name'] for signal in ast.output_signals}
#sdlSymbols.Task.completion_list = set(ast.variables.keys())
#
# sdlSymbols.ProcedureCall.completion_list = {
# proc.inputString for proc in ast.procedures}
symbol
=
sdlSymbols
.
Process
(
ast
,
ast
)
add_to_scene
(
symbol
,
scene
)
return
symbol
...
...
Write
Preview
Supports
Markdown
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