-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: implement a reversible state system for modules (#220)
Signed-off-by: [email protected]
- Loading branch information
delehef
authored
Oct 11, 2023
1 parent
28f4067
commit df4daf2
Showing
22 changed files
with
854 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
src/main/java/net/consensys/linea/zktracer/container/StackedContainer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/* | ||
* Copyright ConsenSys AG. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on | ||
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations under the License. | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
package net.consensys.linea.zktracer.container; | ||
|
||
/** | ||
* A stacked container must behave as the container it emulates, all the while being able to enter | ||
* nested modification contexts, that can be transparently reverted. | ||
*/ | ||
public interface StackedContainer { | ||
/** Enter a new modification context. */ | ||
void enter(); | ||
|
||
/** Erase the modifications brought while in the latest modification context. */ | ||
void pop(); | ||
} |
Oops, something went wrong.