Skip to content

Commit

Permalink
Updates to Java abstraction
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinlano authored Jan 21, 2025
1 parent 78b09e0 commit 26834fc
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 26834fc

Please sign in to comment.