Skip to content

Commit

Permalink
Support comments with function names
Browse files Browse the repository at this point in the history
  • Loading branch information
vmordan committed Jun 19, 2024
1 parent 8fe180e commit 72f2585
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions scripts/mea/et/internal_witness.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ def __init__(self, logger):
self._env_models_json = {}
self._env_funcs_openers = {}
self._env_threads = {}
self._env_funcs = {}
self._notes = {}
self._asserts = {}
self._actions = []
Expand Down Expand Up @@ -275,6 +276,8 @@ def process_verifier_notes(self):
self._logger.debug(f"Add note {note} for model function "
f"'{self._resolve_function(func_id)}'")
edge['note'] = self.process_comment(note)
if file_id in self._env_funcs and func_id in self._env_funcs[file_id]:
edge['env'] = self.process_comment(self._env_funcs[file_id][func_id])
if func_id in self._env_models:
# TODO: not supported anymore
env_note = self._env_models[func_id]
Expand Down Expand Up @@ -413,6 +416,10 @@ def _parse_model_comments(self):
if file_id not in self._env_threads:
self._env_threads[file_id] = {}
self._env_threads[file_id][self.add_function(data["function"])] = data["thread"]
if "comment" in data and "function" in data and data.get("type") == "CONTROL_FUNCTION_BEGIN":
if file_id not in self._env_funcs:
self._env_funcs[file_id] = {}
self._env_funcs[file_id][self.add_function(data["function"])] = data["comment"]
if 'name' in data:
func_data = {
'type': data['type'],
Expand Down

0 comments on commit 72f2585

Please sign in to comment.