/* */ public static CtField make(String src, CtClass declaring)
/* */ throws CannotCompileException
/* */ {
/* 159 */ Javac compiler = new Javac(declaring);
/* */ try {
/* 161 */ CtMember obj = compiler.compile(src);
/* 162 */ if ((obj instanceof CtField))
/* 163 */ return (CtField)obj;
/* */ }
/* */ catch (CompileError e) {
/* 166 */ throw new CannotCompileException(e);