I'm trying my hand at making a sort of autograder for practice problems.
jonathan
02/10/2018, 4:10 AM
It verifies that a student method exists in targetClass (what's being graded), checks its header (parameters and return types), and then checks functionality against solution code.
s
Shawn
02/10/2018, 4:10 AM
oh, are you like, having this sort of analyze student Kotlin code or something?
j
jonathan
02/10/2018, 4:11 AM
Kotlin or Java code, yup!
s
Shawn
02/10/2018, 4:11 AM
I was more just asking why you’re not using function types, but if you’re actually using reflection, that makes more sense (I think)