Explorar el Código

Change format of symbols to fit databse model.

tags/v1.0^2
Benjamin Attal hace 10 años
padre
commit
ca4bb8ff42
Se han modificado 1 ficheros con 7 adiciones y 0 borrados
  1. +7
    -0
      bitshift/parser/__init__.py

+ 7
- 0
bitshift/parser/__init__.py Ver fichero

@@ -125,4 +125,11 @@ def parse(codelet):
server_socket.send("%d\n%s" % (len(source), source))

symbols = json.loads(_recv_data(server_socket))
symbols = {key: [(name, [tuple(loc)
for loc in syms[name]['assignments']],
[tuple(loc) for loc in syms[name]['uses']])
for name in syms.keys()]
for key, syms in symbols.iteritems()}

print symbols
codelet.symbols = symbols

Cargando…
Cancelar
Guardar