blob: 4ea88774380d3d4279b83e9e217921cd62138754 [file] [log] [blame]
#-------------------------------------------------------------------------------
# elftools: dwarf/locationlists.py
#
# DWARF location lists section decoding
#
# Eli Bendersky (eliben@gmail.com)
# This code is in the public domain
#-------------------------------------------------------------------------------
from collections import namedtuple
from ..common.utils import struct_parse
class LocationLists(object):
def __init__(self, stream, structs):
pass