This commit is contained in:
Brendan Dahl 2014-12-04 11:48:04 -08:00
Родитель cce2700224
Коммит 79e3d9ad8e
2 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -13,4 +13,5 @@ var ATTRIBUTE_TYPES = {
LineNumberTable: "LineNumberTable",
LocalVariableTable: "LocalVariableTable",
Deprecated: "Deprecated",
StackMap: "StackMap"
};

Просмотреть файл

@ -101,6 +101,10 @@ var getClassImage = function(classBytes) {
attribute.type = ATTRIBUTE_TYPES.Deprecated;
return attribute;
case ATTRIBUTE_TYPES.StackMap:
attribute.type = ATTRIBUTE_TYPES.StackMap;
return attribute;
default:
throw new Error("This attribute type is not supported yet. [" + JSON.stringify(item) + "]");
}