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
kevinlano authored Jan 22, 2025

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
2 parents 946a600 + 26834fc commit a48d370
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
@@ -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; }

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

0 comments on commit a48d370

Please sign in to comment.