11 lines
136 B
Python
11 lines
136 B
Python
from .jtype import JType
|
|
|
|
|
|
class JArray(JType):
|
|
j_base_type = '['
|
|
|
|
values: []
|
|
|
|
def __init__(self):
|
|
self.values = []
|