Skip to content

Commit

Permalink
Merge pull request #17 from kevinlano/master
Browse files Browse the repository at this point in the history
Updates to Java abstraction
  • Loading branch information
kevinlano authored Jan 22, 2025
2 parents 946a600 + 26834fc commit a48d370
Show file tree
Hide file tree
Showing 10 changed files with 287 additions and 35 deletions.
Binary file modified ASTBasicTerm.class
Binary file not shown.
8 changes: 7 additions & 1 deletion ASTBasicTerm.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/******************************
* Copyright (c) 2003--2024 Kevin Lano
* Copyright (c) 2003--2025 Kevin Lano
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0
Expand Down Expand Up @@ -2879,6 +2879,12 @@ public boolean updatesObject(ASTTerm t)
public boolean callSideEffect()
{ return false; }

public boolean hasPreSideEffect()
{ return false; }

public boolean hasPostSideEffect()
{ return false; }

public boolean hasSideEffect()
{ return false; }

Expand Down
Binary file modified ASTCompositeTerm.class
Binary file not shown.
Loading

0 comments on commit a48d370

Please sign in to comment.