Skip to content

Commit

Permalink
Debug info was removed
Browse files Browse the repository at this point in the history
  • Loading branch information
ab25cq committed Mar 29, 2019
1 parent 40c53a9 commit 734bb20
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions Reflection.clcl
Original file line number Diff line number Diff line change
Expand Up @@ -272,14 +272,11 @@ class Class
return result;
}
def getClassMethods():List<Method> {
System.println("getClassMethods");
result := List<Method>();
for(i:=0; i<numMethods; i++) {
it := getMethod(i);

System.println("it.flags \{it.flags} \{(it.flags & Clover.METHOD_FLAGS_CLASS_METHOD).to_bool}");
if((it.flags & Clover.METHOD_FLAGS_CLASS_METHOD).to_bool) {
System.println("AAA");
result.push(it);
}
}
Expand Down

0 comments on commit 734bb20

Please sign in to comment.