case FKind.FlatCall:
return processFlatCall(bblock, index, (FlatCall) node, delta, newgraph);
-
+
+ /* yonghun -
+ * Pointer Analysis does not care about a flat literal node, just ignores it.
+ * Right now(2011/05/01) we do not attempt to model a flat literal node
+ * for checking runtime pointers.
case FKind.FlatLiteralNode:
// jjenista - the heap analysis abstraction---when used to verify points-to
// analysis results against runtime pointers---will eventually need this to
// allocated string. For now it will pass through like Pointer used to, but
// the checks versus runtime pointers will fail for string literals.
return delta;
-
+ */
+
default:
throw new Error("Unrecognized node:"+node + " of kind " + node.kind());
}