From 964b73e8c4728faa7b8439b5847ca044f2cb200c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Pl=C3=BCmicke?= Date: Mon, 3 Dec 2018 15:06:56 +0100 Subject: [PATCH] =?UTF-8?q?=09modified:=20=20=20../../src/de/dhbwstuttgart?= =?UTF-8?q?/syntaxtree/Constructor.java=20In=20der=20abstrakten=20Syntax?= =?UTF-8?q?=20Einbau=20vom=20super-Konstruktor=20Aufrufen=20in=20den=20Kon?= =?UTF-8?q?struktoren=20entfernt.=20Dies=20muss=20nun=20beim=20Bytecode=20?= =?UTF-8?q?jeweils=20eingef=C3=BCgt=20werden?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/de/dhbwstuttgart/syntaxtree/Constructor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/de/dhbwstuttgart/syntaxtree/Constructor.java b/src/de/dhbwstuttgart/syntaxtree/Constructor.java index 0982bd9b..059211d1 100644 --- a/src/de/dhbwstuttgart/syntaxtree/Constructor.java +++ b/src/de/dhbwstuttgart/syntaxtree/Constructor.java @@ -16,7 +16,7 @@ public class Constructor extends Method { //TODO: Constructor braucht ein super-Statement public Constructor(int modifier, String name, RefTypeOrTPHOrWildcardOrGeneric returnType, ParameterList parameterList, Block codeInsideConstructor, GenericDeclarationList gtvDeclarations, Token offset /*, List fieldInitializations geloescht PL 2018-11-24 */) { - super(modifier, name, returnType, parameterList, prepareBlock(codeInsideConstructor /* ,fieldInitializations geloescht PL 2018-11-24 */), gtvDeclarations, offset); + super(modifier, name, returnType, parameterList, codeInsideConstructor /* prepareBlock(codeInsideConstructor ,fieldInitializations geloescht PL 2018-11-24 )*/, gtvDeclarations, offset); }