mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 12:00:45 +00:00
Initial version based on previous work. (Version alpha 7)
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* Copyright (c) 2010. JPEXS
|
||||
*/
|
||||
|
||||
package com.jpexs.asdec.action.treemodel.operations;
|
||||
|
||||
import com.jpexs.asdec.action.Action;
|
||||
import com.jpexs.asdec.action.treemodel.TreeItem;
|
||||
|
||||
|
||||
public class BitNotTreeItem extends UnaryOpTreeItem {
|
||||
|
||||
public BitNotTreeItem(Action instruction, TreeItem value) {
|
||||
super(instruction, PRECEDENCE_UNARY, value, "~");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user