Expand TODO regarding the syntax of locals

This commit is contained in:
Ben Gruver 2013-03-05 21:04:52 -08:00
parent 8f8b67f65e
commit 93ff1cab5b

View File

@ -54,7 +54,7 @@ public class StartLocalMethodItem extends DebugMethodItem {
writer.write(".local "); writer.write(".local ");
registerFormatter.writeTo(writer, startLocal.getRegister()); registerFormatter.writeTo(writer, startLocal.getRegister());
writer.write(", "); writer.write(", ");
//TODO: what about when name or type is null? //TODO: what about when name or type is null? Can the name contain a colon?
writer.write(startLocal.getName()); writer.write(startLocal.getName());
writer.write(':'); writer.write(':');
writer.write(startLocal.getType()); writer.write(startLocal.getType());