(Class c, Constructor preferredConstructor, IPersistentVector args, int line, int column)
| 3076 | final static Method forNameMethod = Method.getMethod("Class classForName(String)"); |
| 3077 | |
| 3078 | public NewExpr(Class c, Constructor preferredConstructor, IPersistentVector args, int line, int column) { |
| 3079 | checkMethodArity(preferredConstructor, RT.count(args)); |
| 3080 | |
| 3081 | this.args = args; |
| 3082 | this.c = c; |
| 3083 | this.ctor = preferredConstructor; |
| 3084 | } |
| 3085 | |
| 3086 | public NewExpr(Class c, IPersistentVector args, int line, int column) { |
| 3087 | this.args = args; |
nothing calls this directly
no test coverage detected