Menu

[r11]: / trunk / SWFInvestigator / src / decompiler / swfdump / tools / LabelMap.as  Maximize  Restore  History

Download this file

27 lines (23 with data), 548 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package decompiler.swfdump.tools
{
import decompiler.swfdump.actions.Label;
import flash.utils.Dictionary;
internal class LabelMap
{
//private static final serialVersionUID:Number = -7907644739362458461L;
private var lMap:Dictionary;
public function getLabelEntry(l:Label):LabelEntry
{
if (lMap == null) {
this.lMap = new Dictionary();
}
var entry:LabelEntry = lMap[l];
if (entry == null)
{
entry = new LabelEntry(null,null);
lMap[l] = entry;
}
return entry;
}
}
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.