X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/5a6c975adbe2588a10190cba75e9152682bedeae..dc4fc6beb31fe6ec360ad0d670177276dae4cc97:/ObjectiveC/Syntax.hpp?ds=inline diff --git a/ObjectiveC/Syntax.hpp b/ObjectiveC/Syntax.hpp index e4b0732..f47d935 100644 --- a/ObjectiveC/Syntax.hpp +++ b/ObjectiveC/Syntax.hpp @@ -1,5 +1,5 @@ -/* Cycript - Optimizing JavaScript Compiler/Runtime - * Copyright (C) 2009-2015 Jay Freeman (saurik) +/* Cycript - The Truly Universal Scripting Language + * Copyright (C) 2009-2016 Jay Freeman (saurik) */ /* GNU Affero General Public License, Version 3 {{{ */ @@ -177,7 +177,8 @@ struct CYMessageParameter : CYWord *name_; CYTypedIdentifier *type_; - CYMessageParameter(CYWord *name, CYTypedIdentifier *type) : + CYMessageParameter(CYWord *name, CYTypedIdentifier *type, CYMessageParameter *next = NULL) : + CYNext(next), name_(name), type_(type) {