31323334353637
private final JSFunctionBody body; public FunctionImpl(JSCodeModel codeModel) { super(codeModel); this.name = null; this.body = new FunctionBodyImpl(codeModel); }
38394041424344
public FunctionImpl(JSCodeModel codeModel, String name) { super(codeModel); Validate.notNull(name); this.name = name; this.body = new FunctionBodyImpl(codeModel); }