| 25 | } |
| 26 | |
| 27 | JavaValue JavaObjectClassDelegate::newObject(const JavaValue* propertyValues, |
| 28 | Valdi::ExceptionTracker& exceptionTracker) { |
| 29 | return JavaValue::makeObject(getClass().newObjectUntyped(_constructor, propertyValues, _fieldsCount)); |
| 30 | } |
| 31 | |
| 32 | JavaValue JavaObjectClassDelegate::getProperty(const JavaValue& object, |
| 33 | size_t propertyIndex, |
no test coverage detected