Skip to content
Snippets Groups Projects
Commit db198d68 authored by dgelessus's avatar dgelessus
Browse files

Merge branch 'develop'

parents bfc69eae 135c1fd4
No related branches found
No related tags found
No related merge requests found
Pipeline #112166 passed
Showing
with 6375 additions and 6369 deletions
......@@ -81,9 +81,12 @@ public class DefinitionsEliminator extends DepthFirstAdapter {
if (e instanceof AExpressionDefinitionDefinition) {
String name = ((AExpressionDefinitionDefinition) e).getName()
.getText().toString();
if (name.startsWith("ASSERT_LTL") || name.startsWith("scope_")
if (name.startsWith("ASSERT_LTL")
|| name.startsWith("scope_")
|| name.startsWith("SET_PREF_")
|| name.startsWith("ANIMATION_FUNCTION"))
|| name.equals("VISB_JSON_FILE")
|| name.startsWith("ANIMATION_FUNCTION")
|| name.startsWith("ANIMATION_IMG"))
continue;
}
e.apply(this);
......@@ -100,6 +103,9 @@ public class DefinitionsEliminator extends DepthFirstAdapter {
if (name.startsWith("ASSERT_LTL")
|| name.startsWith("scope_")
|| name.startsWith("SET_PREF_")
|| name.equals("VISB_JSON_FILE")
|| name.startsWith("ANIMATION_FUNCTION")
|| name.startsWith("ANIMATION_IMG")
|| StandardMadules
.isKeywordInModuleExternalFunctions(name)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment