Initial commit

This commit is contained in:
2020-01-30 22:31:36 +01:00
commit d4b4be940c
23 changed files with 1694 additions and 0 deletions

10
pjvm/jtypes/jarray.py Normal file
View File

@@ -0,0 +1,10 @@
from .jtype import JType
class JArray(JType):
j_base_type = '['
values: []
def __init__(self):
self.values = []