Initial commit
This commit is contained in:
10
pjvm/jtypes/jarray.py
Normal file
10
pjvm/jtypes/jarray.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from .jtype import JType
|
||||
|
||||
|
||||
class JArray(JType):
|
||||
j_base_type = '['
|
||||
|
||||
values: []
|
||||
|
||||
def __init__(self):
|
||||
self.values = []
|
||||
Reference in New Issue
Block a user