Add instance field get/put test

Still need to handle unresolved at compile-time case.

Change-Id: I4d9c82c4bbe4810aaa147ac19418706635a29a7f
diff --git a/src/compiler/Frontend.cc b/src/compiler/Frontend.cc
index 954f685..6c31cfe 100644
--- a/src/compiler/Frontend.cc
+++ b/src/compiler/Frontend.cc
@@ -703,6 +703,12 @@
         if (PrettyMethod(method).find("virtualCall") != std::string::npos) {
             compiling = true;
         }
+        if (PrettyMethod(method).find("getFoo") != std::string::npos) {
+            compiling = true;
+        }
+        if (PrettyMethod(method).find("setFoo") != std::string::npos) {
+            compiling = true;
+        }
         if (PrettyMethod(method).find("IntMath.<init>") != std::string::npos) {
             compiling = true;
         }