mirror of
https://github.com/JonathanFleischmann/CompilerULTIMATE.git
synced 2024-12-28 17:28:03 +00:00
fix error
This commit is contained in:
parent
bfcbb4dc2d
commit
81d1cf6ca8
@ -114,7 +114,7 @@ public class TypedClass implements TypedNode {
|
||||
c.typedFields = List.of(f1, f2);
|
||||
|
||||
//Constructors
|
||||
TypedConstructor constructor = new TypedConstructor(false, "SomeClass", List.of(new TypedParameter("test", Type.INT)), new TypedBlock());
|
||||
TypedConstructor constructor = new TypedConstructor( "SomeClass", List.of(new TypedParameter("test", Type.INT)), new TypedBlock());
|
||||
c.typedConstructors = List.of(constructor);
|
||||
|
||||
//Methods
|
||||
|
Loading…
Reference in New Issue
Block a user