From bc56b09f8ac55666eb53cdf722759957e5645545 Mon Sep 17 00:00:00 2001 From: Myk Melez Date: Wed, 21 Jan 2015 10:05:04 -0800 Subject: [PATCH] mark ambiguous code --- jit/analyze.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/jit/analyze.ts b/jit/analyze.ts index 86c40efc..ae49fc5b 100644 --- a/jit/analyze.ts +++ b/jit/analyze.ts @@ -85,6 +85,7 @@ module J2ME { export var yieldVirtualMap = { // These can technically yield but are worth the risk. + // XXX Determine the current status of this item. // "java/lang/Object.equals.(Ljava/lang/Object;)Z": YieldReason.None } @@ -98,6 +99,7 @@ module J2ME { } export function isFinalMethod(methodInfo: MethodInfo): boolean { + // XXX Determine whether we can start using the code in this function. return false; var result = methodInfo.isFinal; if (!result) {